1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 23:40:45 +00:00

Use synchronous file writes for saving tiddlers

So that we don't get problems with "docs.tid" overwrites "Docs.tid"
halfway through each other
This commit is contained in:
Jeremy Ruston 2013-03-05 11:56:15 +00:00
parent 8e9b2996eb
commit 9155b8475f

View File

@ -42,9 +42,7 @@ Command.prototype.execute = function() {
var renderTree = new $tw.WikiRenderTree(parser,{wiki: wiki});
renderTree.execute({tiddlerTitle: title});
var text = renderTree.render(type);
fs.writeFile(path.resolve(pathname,title + extension),text,"utf8",function(err) {
self.callback(err);
});
fs.writeFileSync(path.resolve(pathname,title + extension),text,"utf8");
});
return null;
};