always throw here so we never get to Ready status when stopped

This commit is contained in:
Bruno Windels 2020-11-05 21:22:29 +01:00
parent 134f018849
commit b8370d53b6

View File

@ -226,10 +226,8 @@ export class SessionContainer {
try { try {
await this._waitForFirstSyncHandle.promise; await this._waitForFirstSyncHandle.promise;
if (this._sync.status.get() === SyncStatus.Stopped) { if (this._sync.status.get() === SyncStatus.Stopped) {
if (this._sync.error) {
throw this._sync.error; throw this._sync.error;
} }
}
} catch (err) { } catch (err) {
// if dispose is called from stop, bail out // if dispose is called from stop, bail out
if (err instanceof AbortError) { if (err instanceof AbortError) {