Skip to content

Commit 7ea8d0c

Browse files
committed
fixup: fix checkMultiple
1 parent 828679e commit 7ea8d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/module.windows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async function checkMultiple<P extends Permission[]>(
4343
result[permission] = await promise;
4444
return promise;
4545
});
46-
Promise.all(promises);
46+
await Promise.all(promises);
4747
return result;
4848
}
4949

0 commit comments

Comments
 (0)