Fix feed item guid in logged warning when item exists in different feed
This commit is contained in:
parent
e8b574da0b
commit
c78bf1b2a3
1 changed files with 2 additions and 2 deletions
|
@ -450,8 +450,8 @@ Zotero.Feed.prototype._updateFeed = Zotero.Promise.coroutine(function* () {
|
||||||
// that works with sync.
|
// that works with sync.
|
||||||
if (feedItem.libraryID != this.libraryID) {
|
if (feedItem.libraryID != this.libraryID) {
|
||||||
let otherFeed = Zotero.Feeds.get(feedItem.libraryID);
|
let otherFeed = Zotero.Feeds.get(feedItem.libraryID);
|
||||||
Zotero.debug("Feed item " + feedItem.url + " from " + this.url +
|
Zotero.debug("Feed item " + feedItem.guid + " from " + this.url
|
||||||
" exists in a different feed " + otherFeed.url + ". Skipping");
|
+ " exists in a different feed " + otherFeed.url + ". Skipping");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue