Skip to content

Commit

Permalink
fix: add missing await call to delete calls
Browse files Browse the repository at this point in the history
  • Loading branch information
aalemayhu committed Oct 7, 2024
1 parent 68662a3 commit 50b7a4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const deleteDanglingUploadsInBucket = async (

for (const file of nonPatreonFiles) {
if (file.Key) {
storage.delete(file.Key);
await storage.delete(file.Key);
}
}
};

0 comments on commit 50b7a4a

Please sign in to comment.