Skip to content

Commit

Permalink
fix: self is undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
linonetwo committed Oct 6, 2021
1 parent 7dc09c7 commit 3ceefa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/tiddlywiki/filesystem/filesystemadaptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Delete a tiddler in cache, without modifying file system.
FileSystemAdaptor.prototype.deleteTiddlerInCache = function(title) {
// Only delete the tiddler if we have writable information for the file
if(this.boot.files[title]) {
delete self.boot.files[title];
delete this.boot.files[title];
};
};

Expand Down

0 comments on commit 3ceefa1

Please sign in to comment.