Load creators if needed to update display title in Items._loadItemData()

This commit is contained in:
Dan Stillman 2018-02-20 03:33:00 -05:00
parent a714f06670
commit 44fd598699

View File

@ -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;
}
}
}
});