Skip to content

Commit

Permalink
linux/macos don't like it?
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlee337 committed Feb 18, 2025
1 parent 454b77b commit 6d15df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/replay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ export async function writeReplays(
}
const rejections = (await Promise.allSettled(promises)).filter(
(result) => result.status === 'rejected',
);
) as PromiseRejectedResult[];
if (rejections.length > 0) {
throw new Error(
rejections.map((rejection) => rejection.reason).join(', '),
Expand Down

0 comments on commit 6d15df8

Please sign in to comment.