From 3de5ed1332aaa47a56b72ef37ba258f8db7e39d0 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 10 Jun 2016 19:44:33 -0400 Subject: [PATCH] Don't show "false" for empty notes after restart --- chrome/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 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; }