diff --git a/chrome/content/zotero/xpcom/data_access.js b/chrome/content/zotero/xpcom/data_access.js index 87d721750..97fd8aafe 100644 --- a/chrome/content/zotero/xpcom/data_access.js +++ b/chrome/content/zotero/xpcom/data_access.js @@ -424,7 +424,7 @@ Zotero.Item.prototype.setField = function(field, value, loadIn){ 'setField'); } - if (this._data[field] && this._data[field]==value){ + if (this._data[field] != undefined && this._data[field]==value){ return false; } this._data[field] = value;