commit 9373e19aa89da488bee595c0ae72998e122e837d parent d5215618aae00042b742bbf95e179c3e155c0231 Author: Dan Stillman <dstillman@zotero.org> Date: Fri, 17 Oct 2008 17:31:34 +0000 Fix error saving automatic tags Diffstat:
| M | chrome/content/zotero/xpcom/data/tag.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/data/tag.js b/chrome/content/zotero/xpcom/data/tag.js @@ -213,7 +213,7 @@ Zotero.Tag.prototype.save = function () { this.type = 0; } - if (this.type !== 0 && this.type !== 1) { + if (this.type !== 0 && this.type != 1) { throw ('Invalid tag type ' + this.type + ' in Zotero.Tag.save()'); }