diff --git a/chrome/content/zotero/xpcom/attachments.js b/chrome/content/zotero/xpcom/attachments.js index 9c8d8b00f9..cb03660bc0 100644 --- a/chrome/content/zotero/xpcom/attachments.js +++ b/chrome/content/zotero/xpcom/attachments.js @@ -1279,6 +1279,7 @@ Zotero.Attachments = new function(){ this.canFindPDFForItem = function (item) { return item.isRegularItem() + && !item.isFeedItem && (!!item.getField('DOI') || !!item.getField('url') || !!item.getExtraField('DOI')) && item.numPDFAttachments() == 0; };