Skip to content

Commit 53c854e

Browse files
committed
Fix jitsi popout URL
Needs the template variables filled in
1 parent 3f93bdb commit 53c854e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/views/elements/AppTile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,9 @@ export default class AppTile extends React.Component {
592592

593593
_getPopoutUrl() {
594594
if (this.props.app.type === 'jitsi') {
595-
return WidgetUtils.getLocalJitsiWrapperUrl({forLocalRender: false});
595+
return this._templatedUrl(
596+
WidgetUtils.getLocalJitsiWrapperUrl({forLocalRender: false}),
597+
);
596598
} else {
597599
// use app.url, not state.widgetUrl, because we want the one without
598600
// the wURL params for the popped-out version.

0 commit comments

Comments
 (0)