From 0701f308dbdc4ca220c3af5685eec5c80369a3b6 Mon Sep 17 00:00:00 2001 From: mahsashadi <70196035+mahsashadi@users.noreply.github.com> Date: Sun, 29 Aug 2021 09:19:56 +0430 Subject: [PATCH] Fix unused options in readdir system VFS adapter --- src/adapters/vfs/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adapters/vfs/system.js b/src/adapters/vfs/system.js index ceee251..16dcfd9 100644 --- a/src/adapters/vfs/system.js +++ b/src/adapters/vfs/system.js @@ -59,7 +59,7 @@ const methods = (core, request) => { return { readdir: ({path}, options) => request('readdir', { path, - options: {} + options, }, 'json').then(({body}) => body), readfile: ({path}, type, options) =>