This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree 4 files changed +3
-1
lines changed
4 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import { Logger } from '../../common/utils';
22
22
import { BrowserService } from '../../services/browser' ;
23
23
import config from '../../services/config' ;
24
24
import { ConnectionService } from '../../services/connection-status' ;
25
- import { RoomStateService } from '../../services/roomState ' ;
25
+ import { RoomStateService } from '../../services/room-state ' ;
26
26
import VideoConferenceManager from '../../services/video-conference-manager' ;
27
27
import {
28
28
CamerasPosition ,
@@ -184,6 +184,7 @@ export class VideoConference extends BaseComponent {
184
184
destroy ( ) ;
185
185
186
186
this . roomState ?. destroy ( ) ;
187
+ this . drawingRoom . disconnect ( ) ;
187
188
188
189
this . kickParticipantsOnHostLeave = false ;
189
190
File renamed without changes.
Original file line number Diff line number Diff line change @@ -407,6 +407,7 @@ export class RoomStateService {
407
407
public destroy ( ) {
408
408
this . room . presence . off ( PresenceEvents . LEAVE ) ;
409
409
this . room . presence . off ( PresenceEvents . JOINED_ROOM ) ;
410
+ this . drawingRoom . presence . off ( PresenceEvents . UPDATE ) ;
410
411
411
412
this . room . off ( RoomPropertiesEvents . UPDATE , this . updateLocalRoomState ) ;
412
413
}
File renamed without changes.
You can’t perform that action at this time.
0 commit comments