forked from mystiq/hydrogen-web
waitForRetry doesn't reject when aborted
This commit is contained in:
parent
8e9c76c26b
commit
0eefc88fe3
1 changed files with 1 additions and 7 deletions
|
@ -92,13 +92,7 @@ export class Reconnector {
|
|||
} catch (err) {
|
||||
if (err instanceof ConnectionError) {
|
||||
this._setState(ConnectionStatus.Waiting);
|
||||
try {
|
||||
await this._retryDelay.waitForRetry();
|
||||
} catch (err) {
|
||||
if (!(err instanceof AbortError)) {
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
throw err;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue