mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
Merge pull request #4327 from matrix-org/dbkr/template_popout_url_rel
Fix jitsi popout URL
This commit is contained in:
commit
c027c5da41
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue