1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Fix jitsi popout URL

Needs the template variables filled in
This commit is contained in:
David Baker
2020-04-01 14:42:17 +01:00
parent 144c657b61
commit 8aa24f8987

View File

@@ -592,7 +592,9 @@ export default class AppTile extends React.Component {
_getPopoutUrl() {
if (this.props.app.type === 'jitsi') {
return WidgetUtils.getLocalJitsiWrapperUrl({forLocalRender: false});
return this._templatedUrl(
WidgetUtils.getLocalJitsiWrapperUrl({forLocalRender: false}),
);
} else {
// use app.url, not state.widgetUrl, because we want the one without
// the wURL params for the popped-out version.