From c4d5b803ef639566c6421ac73cef862a2073e0bd Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 29 Oct 2013 14:47:18 +0000 Subject: [PATCH] Temporarily disable the filewatcher functionality It's currently broken, awaiting a fix from @natecain --- plugins/tiddlywiki/filesystem/filesystemadaptor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/tiddlywiki/filesystem/filesystemadaptor.js b/plugins/tiddlywiki/filesystem/filesystemadaptor.js index 24f606763..9db1ad539 100644 --- a/plugins/tiddlywiki/filesystem/filesystemadaptor.js +++ b/plugins/tiddlywiki/filesystem/filesystemadaptor.js @@ -23,6 +23,7 @@ function FileSystemAdaptor(syncer) { this.pending = {}; this.setwatcher = function(filename, title) { + return undefined; return this.watchers[filename] = this.watchers[filename] || fs.watch(filename, {persistent: false}, function(e) { console.log("Filesystem:", e, filename);