Skip to content

Commit 679abce

Browse files
committed
fix: navigateFrom not awaiting promise
This was odd since it should've been caught by linting.
1 parent 84e74f8 commit 679abce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EncryptedFS.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3486,7 +3486,7 @@ class EncryptedFS {
34863486
DBTransaction,
34873487
];
34883488
}
3489-
const curDirData = this.iNodeMgr.get(curdir, tran);
3489+
const curDirData = await this.iNodeMgr.get(curdir, tran);
34903490
if (curDirData == null) {
34913491
throw new errors.ErrorEncryptedFSError({
34923492
errno: errno.ENOENT,

0 commit comments

Comments
 (0)