www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit d98a79c33f502ec395c28d95578e670cd0744c54
parent 9574e56ad67c99eafc56e1a9cb090cce3a15387f
Author: Aurimas Vinckevicius <aurimas.dev@gmail.com>
Date:   Tue,  2 Dec 2014 08:16:32 -0600

Fix typo in item field caching code

Diffstat:
Mchrome/content/zotero/xpcom/data/items.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/data/items.js b/chrome/content/zotero/xpcom/data/items.js @@ -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) } );