Skip to content

Commit ab29ec1

Browse files
authored
Merge pull request element-hq#12968 from vector-im/travis/jitsi-errors
Add a console warning that errors from Jitsi Meet are fine
2 parents cb8319e + 13a7b71 commit ab29ec1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/vector/jitsi/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ function joinConference() { // event handler bound in HTML
9797
// noinspection JSIgnoredPromiseFromCall
9898
if (widgetApi) widgetApi.setAlwaysOnScreen(true); // ignored promise because we don't care if it works
9999

100+
console.warn(
101+
"[Jitsi Widget] The next few errors about failing to parse URL parameters are fine if " +
102+
"they mention 'external_api' or 'jitsi' in the stack. They're just Jitsi Meet trying to parse " +
103+
"our fragment values and not recognizing the options.",
104+
);
100105
const meetApi = new JitsiMeetExternalAPI(jitsiDomain, {
101106
width: "100%",
102107
height: "100%",

0 commit comments

Comments
 (0)