Use URL without wurl params for popout

The popout can't be assumed to have the widget API available, so
just leave these params out.
This commit is contained in:
David Baker 2020-04-01 11:18:45 +01:00
parent 274eb75c38
commit a2f92e93a7

View file

@ -583,17 +583,17 @@ export default class AppTile extends React.Component {
url = WidgetUtils.getLocalJitsiWrapperUrl({forLocalRender: true});
url = this._addWurlParams(url);
} else {
url = this._getSafeUrl();
url = this._getSafeUrl(this.state.widgetUrl);
}
return this._templatedUrl(url);
}
_getPopoutUrl() {
return this._templatedUrl(this._getSafeUrl());
return this._templatedUrl(this._getSafeUrl(this.props.app.url));
}
_getSafeUrl() {
const parsedWidgetUrl = url.parse(this.state.widgetUrl, true);
_getSafeUrl(u) {
const parsedWidgetUrl = url.parse(u, true);
if (ENABLE_REACT_PERF) {
parsedWidgetUrl.search = null;
parsedWidgetUrl.query.react_perf = true;