Skip to content

Commit a05b643

Browse files
committed
await
1 parent 1b620bb commit a05b643

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

retry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function retry<T>(
3434
try {
3535
return await fn();
3636
} catch (err) {
37-
if (!retryOnError(err)) {
37+
if (!await retryOnError(err)) {
3838
throw err;
3939
}
4040

0 commit comments

Comments
 (0)