Fix typo in item field caching code

This commit is contained in:
Aurimas Vinckevicius 2014-12-02 08:16:32 -06:00
parent 9574e56ad6
commit d98a79c33f

View File

@ -285,7 +285,7 @@ Zotero.Items = function() {
}
Zotero.debug(obj.itemID);
Zotero.debug(Object.keys(this._objectCache));
this._objectCache[obj.itemID].loadFromRow(rowObj);
this._objectCache[obj.itemID].loadFromRow(obj);
}.bind(this)
}
);