Merge pull request #13439 from gustavotrott/breakout-room-join-automatically

refactor: Let bbb try to open BreakoutRoom automatically (when receive the URL asked by user)
This commit is contained in:
Anton Georgiev 2021-10-07 14:04:34 -04:00 committed by GitHub
commit b86b5d252c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
}