mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-27 12:22:04 -08:00
Fix problem with erroneous initialisation of changedTiddlers member
This commit is contained in:
parent
e583c1d72d
commit
647bd51299
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ This method should be called after the changes it describes have been made to th
|
|||
exports.enqueueTiddlerEvent = function(title,isDeleted) {
|
||||
// Record the touch in the list of changed tiddlers
|
||||
this.changedTiddlers = this.changedTiddlers || {};
|
||||
this.changedTiddlers[title] = this.changedTiddlers[title] || [];
|
||||
this.changedTiddlers[title] = this.changedTiddlers[title] || {};
|
||||
this.changedTiddlers[title][isDeleted ? "deleted" : "modified"] = true;
|
||||
// Increment the change count
|
||||
this.changeCount = this.changeCount || {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue