diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-22 14:43:16 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-22 14:43:16 +0200 |
| commit | 112b15b5918296f159af79e1f6db96beac7aa14d (patch) | |
| tree | c8d703c75c9a180348a4972187493d9bc55ce273 /app/relay/runner.js | |
| parent | 452a39e037eca0e52111600a506a6fe68d90259a (diff) | |
fix runner
Diffstat (limited to 'app/relay/runner.js')
| -rw-r--r-- | app/relay/runner.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/relay/runner.js b/app/relay/runner.js index f1e3497..ab22a17 100644 --- a/app/relay/runner.js +++ b/app/relay/runner.js @@ -201,7 +201,7 @@ export function list_directory(opt, cb) { path: full_path, date: stat.ctime, size: stat.size, - dir: stat.isDirectory(), + dir: stat.isDirectory ? stat.isDirectory() : false, }) }) }) |
