Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
FZambia committed Jun 16, 2024
1 parent ef9318e commit da57e27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/subscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ export class Subscription extends (EventEmitter as new () => TypedEventEmitter<S
this._setSubscribing(subscribingCodes.subscribeCalled, 'subscribe called');
try {
await this.ready();
} catch (e) {}
} catch (e) {
// do nothing.
}
}

/** unsubscribe from a channel, keeping position state.*/
Expand Down

0 comments on commit da57e27

Please sign in to comment.