Skip to content
This repository was archived by the owner on Jun 10, 2022. It is now read-only.

Commit 2f2d7ad

Browse files
committed
fix: fix fs.readdir in electron 9
1 parent 1017a6a commit 2f2d7ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/helper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export default {
164164
const stats = await promisify(fs.stat, {callbackArg: 1})(dir);
165165

166166
if (stats.isDirectory()) {
167-
const filePaths = await promisify(fs.readdir)(dir);
167+
const filePaths = await promisify(fs.readdir, {callbackArg: 2})(dir);
168168

169169
const files = await Promise.all(filePaths.map(filePath => this.getFilesInDir(path.resolve(dir, filePath))));
170170
return files.reduce((prev, file) => prev.concat(file), []);

0 commit comments

Comments
 (0)