Skip to content

Commit

Permalink
fix(core/utils): fix callPromiseUntilEnd parameter pass
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaodong2008 committed Oct 15, 2024
1 parent d0a2f2a commit 098d95b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/utils/basic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ export function callPromiseUntilEnd(
immediate: boolean = false,
continueEvenError: boolean = false
): Promise<void> {
return callUntilEnd(func, timeout, immediate, true);
return callUntilEnd(func, timeout, immediate, continueEvenError, true);
}

0 comments on commit 098d95b

Please sign in to comment.