mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
waitForRetry doesn't reject when aborted
This commit is contained in:
parent
8e9c76c26b
commit
0eefc88fe3
@ -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;
|
||||
}
|
||||
}
|
||||
await this._retryDelay.waitForRetry();
|
||||
} else {
|
||||
throw err;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user