diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index d6ab45214..4bad5204c 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -752,7 +752,7 @@ Zotero.Item.prototype.setField = function(field, value, loadIn) { } if (loadIn && this.isNote() && field == 110) { // title - this._noteTitle = value; + this._noteTitle = value ? value : ""; return true; }