From d98a79c33f502ec395c28d95578e670cd0744c54 Mon Sep 17 00:00:00 2001 From: Aurimas Vinckevicius Date: Tue, 2 Dec 2014 08:16:32 -0600 Subject: [PATCH] Fix typo in item field caching code --- chrome/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 index fa541111f5..b8e51f69e8 100644 --- 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) } );