From 53c854efba658a7edd461e3991477fede231f2f5 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 1 Apr 2020 14:42:17 +0100 Subject: [PATCH] Fix jitsi popout URL Needs the template variables filled in --- src/components/views/elements/AppTile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/views/elements/AppTile.js b/src/components/views/elements/AppTile.js index 97c137074b..72d68d6f78 100644 --- a/src/components/views/elements/AppTile.js +++ b/src/components/views/elements/AppTile.js @@ -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.