mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
Merge pull request #12842 from vector-im/revert-12836-travis/jitsi-wrapper
Revert "Remove useless app preloading from Jitsi widget wrapper"
This commit is contained in:
commit
4de93a8cdd
@ -20,6 +20,7 @@ require("./index.scss");
|
||||
import * as qs from 'querystring';
|
||||
import { Capability, WidgetApi } from "matrix-react-sdk/src/widgets/WidgetApi";
|
||||
import SdkConfig from "matrix-react-sdk/src/SdkConfig";
|
||||
import { loadConfig, preparePlatform } from "../initial-load";
|
||||
|
||||
// Dev note: we use raw JS without many dependencies to reduce bundle size.
|
||||
// We do not need all of React to render a Jitsi conference.
|
||||
@ -60,8 +61,12 @@ let widgetApi: WidgetApi;
|
||||
await widgetApi.setAlwaysOnScreen(false);
|
||||
});
|
||||
|
||||
// Bootstrap ourselves for loading the script and such
|
||||
preparePlatform();
|
||||
await loadConfig();
|
||||
|
||||
// Populate the Jitsi params now
|
||||
jitsiDomain = qsParam('conferenceDomain', false);
|
||||
jitsiDomain = qsParam('conferenceDomain', true) || SdkConfig.get()['jitsi']['preferredDomain'];
|
||||
conferenceId = qsParam('conferenceId');
|
||||
displayName = qsParam('displayName', true);
|
||||
avatarUrl = qsParam('avatarUrl', true); // http not mxc
|
||||
|
Loading…
Reference in New Issue
Block a user