www

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

commit 94accba8a07d010f722cf3583bf1803a773b421c
parent 1c8abf38413cb5d144395c5d05a1fc01137ed92c
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 10 Mar 2015 01:23:59 -0400

Fix error creating new item with tags

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

diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js @@ -1527,7 +1527,7 @@ Zotero.Item.prototype._saveData = Zotero.Promise.coroutine(function* (env) { } // Tags - if (this._changed.tags) { + if (this._changed.tags && this._previousData.tags) { let oldTags = this._previousData.tags; let newTags = this._tags;