From 564cb91ba8c0f01781963f2f66b73190571a595d Mon Sep 17 00:00:00 2001 From: GitSquared Date: Sat, 28 Jul 2018 16:55:08 +0200 Subject: [PATCH] :ambulance: Fix error in fsDisp when cwd content changes --- src/classes/filesystem.class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/filesystem.class.js b/src/classes/filesystem.class.js index 6e09262..18269da 100644 --- a/src/classes/filesystem.class.js +++ b/src/classes/filesystem.class.js @@ -44,7 +44,7 @@ class FilesystemDisplay { this._timer = setInterval(() => { if (this._runNextTick === true) { this._runNextTick = false; - this.readFS(); + this.readFS(this.dirpath); } }, 1000); -- GitLab