Fix error during creator add (since data caching change)
This commit is contained in:
parent
47285a0567
commit
8f2a7524e7
1 changed files with 2 additions and 2 deletions
|
@ -345,8 +345,8 @@ Zotero.Creators = new function() {
|
|||
|
||||
var creators = getCreatorsWithData(creatorDataID);
|
||||
for each(var creatorID in creators) {
|
||||
if (this._objectCache[creatorID]) {
|
||||
this._objectCache[creatorID].load();
|
||||
if (Zotero.Creators._objectCache[creatorID]) {
|
||||
Zotero.Creators._objectCache[creatorID].load();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue