diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index bfb0af966..8980c43d5 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -2391,9 +2391,9 @@ Zotero.Item.prototype.isImportedAttachment = function() { } var linkMode = this.attachmentLinkMode; if (linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_FILE || linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_URL) { - return false; + return true; } - return true; + return false; }