diff --git a/chrome/content/zotero/xpcom/data/items.js b/chrome/content/zotero/xpcom/data/items.js index 7be2e13cd..c61192e21 100644 --- a/chrome/content/zotero/xpcom/data/items.js +++ b/chrome/content/zotero/xpcom/data/items.js @@ -315,7 +315,21 @@ Zotero.Items = function() { item._clearChanged('itemData'); // Display titles - item.updateDisplayTitle() + try { + item.updateDisplayTitle() + } + catch (e) { + // A few item types need creators to be loaded. Instead of making + // updateDisplayTitle() async and loading conditionally, just catch the error + // and load on demand + if (e instanceof Zotero.Exception.UnloadedDataException) { + yield item.loadDataType('creators'); + item.updateDisplayTitle() + } + else { + throw e; + } + } } });