From ab27dd154ef12b8b16bbbe5ac454ea85c378bd9f Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 9 Oct 2018 18:24:53 -0400 Subject: [PATCH] Fix status indicator for successful PDF retrieval in progress window --- chrome/content/zotero/xpcom/attachments.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/attachments.js b/chrome/content/zotero/xpcom/attachments.js index 7b98055a5c..a9f5fb4656 100644 --- a/chrome/content/zotero/xpcom/attachments.js +++ b/chrome/content/zotero/xpcom/attachments.js @@ -1387,7 +1387,9 @@ Zotero.Attachments = new function(){ current.result = attachment; progressQueue.updateRow( current.item.id, - Zotero.ProgressQueue.ROW_FAILED, + attachment + ? Zotero.ProgressQueue.ROW_SUCCEEDED + : Zotero.ProgressQueue.ROW_FAILED, attachment ? attachment.getField('title') : Zotero.getString('findPDF.noPDFFound')