fix lints

This commit is contained in:
Timo K
2025-12-10 21:17:33 +01:00
parent b380532d30
commit 8dac0366b6
2 changed files with 6 additions and 6 deletions

View File

@@ -177,7 +177,11 @@ export class Connection {
} catch (error) {
this.logger.debug(`Failed to connect to LiveKit room: ${error}`);
this._state$.next(
error instanceof ElementCallError ? error : new UnknownCallError(error),
error instanceof ElementCallError
? error
: error instanceof Error
? new UnknownCallError(error)
: new UnknownCallError(new Error(`${error}`)),
);
// Its okay to ignore the throw. The error is part of the state.
throw error;