mirror of https://github.com/vector-im/riot-web
Work around a Jitsi log handling crash (#22353)
parent
745140e9e7
commit
9c92f55afd
|
@ -366,8 +366,12 @@ function joinConference(audioDevice?: string, videoDevice?: string) {
|
||||||
startAudioOnly,
|
startAudioOnly,
|
||||||
startWithAudioMuted: audioDevice == null,
|
startWithAudioMuted: audioDevice == null,
|
||||||
startWithVideoMuted: videoDevice == null,
|
startWithVideoMuted: videoDevice == null,
|
||||||
// Request all log levels for inclusion in rageshakes
|
// Request some log levels for inclusion in rageshakes
|
||||||
apiLogLevels: ["warn", "log", "error", "info", "debug"],
|
// Ideally we would capture all possible log levels, but this can
|
||||||
|
// cause Jitsi Meet to try to post various circular data structures
|
||||||
|
// back over the iframe API, and therefore end up crashing
|
||||||
|
// https://github.com/jitsi/jitsi-meet/issues/11585
|
||||||
|
apiLogLevels: ["warn", "error"],
|
||||||
} as any,
|
} as any,
|
||||||
jwt: jwt,
|
jwt: jwt,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue