Skip to content

Commit 13a7b71

Browse files
committed
Add a console warning that errors from Jitsi Meet are fine
See diff for info. We use the fragment to avoid sending conference information to the web server where possible.
1 parent d4f75e4 commit 13a7b71

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
@@ -96,6 +96,11 @@ function joinConference() { // event handler bound in HTML
9696
// noinspection JSIgnoredPromiseFromCall
9797
widgetApi.setAlwaysOnScreen(true); // ignored promise because we don't care if it works
9898

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

0 commit comments

Comments
 (0)