Skip to content
Snippets Groups Projects
Commit ee2794f3 authored by Tainan Felipe's avatar Tainan Felipe
Browse files

Unshare webcam when join in a breakout room

parent 3c40eb64
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ import { defineMessages, injectIntl } from 'react-intl';
import { withModalMounter } from '/imports/ui/components/modal/service';
import Modal from '/imports/ui/components/modal/fullscreen/component';
import AudioService from '../audio/service';
import VideoService from '../video-provider/service';
import { styles } from './styles';
const intlMessages = defineMessages({
......@@ -59,7 +60,7 @@ class BreakoutJoinConfirmation extends Component {
const url = isFreeJoin ? getURL(this.state.selectValue) : breakoutURL;
// leave main room's audio when joining a breakout room
AudioService.exitAudio();
VideoService.exitVideo();
window.open(url);
mountModal(null);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment