From e922ae711a9fc301d1ecd9a7abc5591262957221 Mon Sep 17 00:00:00 2001 From: Abe Jellinek Date: Wed, 30 Mar 2022 16:30:07 -0700 Subject: [PATCH] Fix ProgressQueue titles for cases, letters, etc. Handles items with an alternate field that maps to title (like cases) and items for which the title is usually filled in by updateDisplayTitle() (like letters). --- chrome/content/zotero/xpcom/progressQueue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/progressQueue.js b/chrome/content/zotero/xpcom/progressQueue.js index e39b370860..2e0ec43b21 100644 --- a/chrome/content/zotero/xpcom/progressQueue.js +++ b/chrome/content/zotero/xpcom/progressQueue.js @@ -154,7 +154,7 @@ Zotero.ProgressQueue = function (options) { let row = { id: item.id, status: Zotero.ProgressQueue.ROW_QUEUED, - fileName: item.getField('title'), + fileName: item.getDisplayTitle(), message: '' };