www

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

commit 2928752d1956437f2662a9f669fe94d0de3d5297
parent cff84a71ede17542c34a120c4f4aa7579ff66f89
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 18 Jul 2017 18:50:28 -0400

Clear attachment data change marker when loading primary data

Fixes a regression from ef7da3486a4 in which attachment data still shows
as changed after a save.

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

diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js @@ -389,6 +389,7 @@ Zotero.Item.prototype._parseRowData = function(row) { Zotero.Item.prototype._finalizeLoadFromRow = function(row) { this._loaded.primaryData = true; this._clearChanged('primaryData'); + this._clearChanged('attachmentData'); this._identified = true; }