From c2b3e0d2635d6d1d4fed4f9101f863d016f3c75a Mon Sep 17 00:00:00 2001 From: Gustavo Trott Date: Thu, 7 Oct 2021 11:25:33 -0300 Subject: [PATCH] Let bbb try to open BreakoutRoom link automatically --- .../imports/ui/components/breakout-room/component.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/bigbluebutton-html5/imports/ui/components/breakout-room/component.jsx b/bigbluebutton-html5/imports/ui/components/breakout-room/component.jsx index 95e5b00227..272966945b 100644 --- a/bigbluebutton-html5/imports/ui/components/breakout-room/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/breakout-room/component.jsx @@ -144,6 +144,7 @@ class BreakoutRoom extends PureComponent { if (!breakoutUrlData) return false; if (breakoutUrlData.redirectToHtml5JoinURL !== '') { + window.open(breakoutUrlData.redirectToHtml5JoinURL, '_blank'); _.delay(() => this.setState({ generated: true, waiting: false }), 1000); } }