We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e2ab6 commit 66d292fCopy full SHA for 66d292f
src/components/views/elements/AppTile.js
@@ -591,7 +591,13 @@ export default class AppTile extends React.Component {
591
}
592
593
_getPopoutUrl() {
594
- return this._templatedUrl(this._getSafeUrl(this.props.app.url));
+ if (this.props.app.type === 'jitsi') {
595
+ return WidgetUtils.getLocalJitsiWrapperUrl({forLocalRender: false});
596
+ } else {
597
+ // use app.url, not state.widgetUrl, because we want the one without
598
+ // the wURL params for the popped-out version.
599
+ return this._templatedUrl(this._getSafeUrl(this.props.app.url));
600
+ }
601
602
603
_getSafeUrl(u) {
0 commit comments