diff --git a/lib/manager/v2/fileSystem/FileSystem.js b/lib/manager/v2/fileSystem/FileSystem.js index d6e40377..5f942836 100644 --- a/lib/manager/v2/fileSystem/FileSystem.js +++ b/lib/manager/v2/fileSystem/FileSystem.js @@ -619,7 +619,7 @@ var FileSystem = (function () { var pPath = new Path_1.Path(path); var callback = function (e, data) { if (e) - return _callback(e); + return __callback(e); if (!data) data = []; _this.getFullPath(ctx, function (e, fsFullPath) { diff --git a/src/manager/v2/fileSystem/FileSystem.ts b/src/manager/v2/fileSystem/FileSystem.ts index 35b82900..58d0750f 100644 --- a/src/manager/v2/fileSystem/FileSystem.ts +++ b/src/manager/v2/fileSystem/FileSystem.ts @@ -1047,7 +1047,7 @@ export abstract class FileSystem implements ISerializableFileSystem const pPath = new Path(path); const callback = (e ?: Error, data ?: Path[]) => { if(e) - return _callback(e); + return __callback(e); if(!data) data = [];