Skip to content

Commit

Permalink
Fix missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
NeKzor committed Sep 15, 2023
1 parent 4199864 commit eb9de08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ const handleMessageVideos = async (videos: AutorenderMessageVideos['data']) => {
const filename = join(autorenderDir, file.name);

try {
Deno.remove(filename);
await Deno.remove(filename);
} catch (err) {
logger.error(
`Failed to remove file ${filename}:`,
Expand Down

0 comments on commit eb9de08

Please sign in to comment.