From 807c40859fda67b7fc43d7f3ff7a6de4680e7b6a Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 29 May 2015 21:55:22 -0400 Subject: [PATCH] Missed lines from 2154673dd --- chrome/content/zotero/xpcom/translation/translate_item.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/chrome/content/zotero/xpcom/translation/translate_item.js b/chrome/content/zotero/xpcom/translation/translate_item.js index d6050e455..09640915d 100644 --- a/chrome/content/zotero/xpcom/translation/translate_item.js +++ b/chrome/content/zotero/xpcom/translation/translate_item.js @@ -291,10 +291,9 @@ Zotero.Translate.ItemSaver.prototype = { delete attachment.path; } } else { - let myID; if (attachment.url) { attachment.linkMode = "imported_url"; - myID = yield Zotero.Attachments.importSnapshotFromFile({ + newItem = yield Zotero.Attachments.importSnapshotFromFile({ file: file, url: attachment.url, title: attachment.title, @@ -305,13 +304,12 @@ Zotero.Translate.ItemSaver.prototype = { } else { attachment.linkMode = "imported_file"; - myID = yield Zotero.Attachments.importFromFile({ + newItem = yield Zotero.Attachments.importFromFile({ file: file, parentItemID: parentID }); } done = true; - newItem = yield Zotero.Items.getAsync(myID); } }