Skip to content

Commit

Permalink
fix: missing await behind sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
stkevintan committed Jan 25, 2024
1 parent 17e7648 commit dde2b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/lib/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ export class Wcferry {
if (path) {
return path;
}
sleep();
await sleep();
}
return Promise.reject('Failed to decrypt image');
}
Expand Down

0 comments on commit dde2b90

Please sign in to comment.