mirror of https://github.com/OpenVidu/openvidu.git
openvidu-testapp: fix Session API dialog when no mediaNode
parent
3cc11fbffb
commit
73835701a6
|
@ -36,6 +36,9 @@ export class SessionApiDialogComponent {
|
||||||
this.session = data.session;
|
this.session = data.session;
|
||||||
this.sessionId = data.sessionId;
|
this.sessionId = data.sessionId;
|
||||||
this.recordingProperties = data.recordingProperties;
|
this.recordingProperties = data.recordingProperties;
|
||||||
|
if (!this.recordingProperties.mediaNode) {
|
||||||
|
this.recordingProperties.mediaNode = { id: '' };
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
closeSession() {
|
closeSession() {
|
||||||
|
|
Loading…
Reference in New Issue