From cd21fffaaa5fc6190f80a8eceba88f68d44fd0db Mon Sep 17 00:00:00 2001 From: Gustavo Trott Date: Fri, 24 Nov 2023 10:19:40 -0300 Subject: [PATCH] fix: Button 'Open Tablet app' breaks when the meeting name contains white space --- .../imports/ui/components/mobile-app-modal/component.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/imports/ui/components/mobile-app-modal/component.jsx b/bigbluebutton-html5/imports/ui/components/mobile-app-modal/component.jsx index 45fece05cd..f04d86ea20 100644 --- a/bigbluebutton-html5/imports/ui/components/mobile-app-modal/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/mobile-app-modal/component.jsx @@ -121,7 +121,7 @@ class MobileAppModal extends Component { color="primary" disabled={url === ''} label={intl.formatMessage(intlMessages.openApp)} - onClick={() => window.open(`${BBB_TABLET_APP_CONFIG.iosAppUrlScheme}://${meetingName}/${encodeURIComponent(url)}`, '_blank')} + onClick={() => window.open(`${BBB_TABLET_APP_CONFIG.iosAppUrlScheme}://${encodeURIComponent(meetingName)}/${encodeURIComponent(url)}`, '_blank')} role="button" size="lg" />