Merge pull request #4326 from matrix-org/dbkr/template_popout_url

Fix jitsi popout URL
pull/21833/head
J. Ryan Stinnett 2020-04-01 14:44:22 +01:00 committed by GitHub
commit 4be08a901a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

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.