add more test for publisher

This commit is contained in:
Timo K
2025-11-28 21:50:22 +01:00
parent 2011aef116
commit 66dece98a5
5 changed files with 154 additions and 10 deletions

View File

@@ -136,12 +136,12 @@ export class FailToGetOpenIdToken extends ElementCallError {
}
export class FailToStartLivekitConnection extends ElementCallError {
public constructor() {
public constructor(e?: string) {
super(
t("error.failed_to_start_livekit"),
ErrorCode.FAILED_TO_START_LIVEKIT,
ErrorCategory.NETWORK_CONNECTIVITY,
undefined,
e,
);
}
}