Fix group deleting
This commit is contained in:
parent
d128e31467
commit
d205aac0e1
1 changed files with 2 additions and 2 deletions
|
@ -2664,9 +2664,9 @@ Zotero.Sync.Server.Data = new function() {
|
|||
|
||||
// Remotely deleted groups
|
||||
var deletedGroups = updatedNode.xpath("deleted/groups");
|
||||
if (deletedGroups.length && deletedGroups.textContent) {
|
||||
if (deletedGroups.length && deletedGroups[0].textContent) {
|
||||
Zotero.debug("Processing remotely deleted groups");
|
||||
var groupIDs = deletedGroups.textContent.split(' ');
|
||||
var groupIDs = deletedGroups[0].textContent.split(' ');
|
||||
Zotero.debug(groupIDs);
|
||||
|
||||
for each(var groupID in groupIDs) {
|
||||
|
|
Loading…
Reference in a new issue