From c78bf1b2a3894d5ebc746a11351bf742f655e7be Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 4 Feb 2022 02:17:22 -0500 Subject: [PATCH] Fix feed item guid in logged warning when item exists in different feed --- chrome/content/zotero/xpcom/data/feed.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/data/feed.js b/chrome/content/zotero/xpcom/data/feed.js index 10a8f666ee..5d71ced3cd 100644 --- a/chrome/content/zotero/xpcom/data/feed.js +++ b/chrome/content/zotero/xpcom/data/feed.js @@ -450,8 +450,8 @@ Zotero.Feed.prototype._updateFeed = Zotero.Promise.coroutine(function* () { // that works with sync. if (feedItem.libraryID != this.libraryID) { let otherFeed = Zotero.Feeds.get(feedItem.libraryID); - Zotero.debug("Feed item " + feedItem.url + " from " + this.url + - " exists in a different feed " + otherFeed.url + ". Skipping"); + Zotero.debug("Feed item " + feedItem.guid + " from " + this.url + + " exists in a different feed " + otherFeed.url + ". Skipping"); continue; }