mirror of https://github.com/OpenVidu/openvidu.git
Revert fix recorder in openvidu-browser
parent
904cd7cce7
commit
2d6dfb2363
|
@ -142,7 +142,7 @@ export class Connection {
|
||||||
};
|
};
|
||||||
// TODO: CLEAN 2.15.0 LEGACY CODE
|
// TODO: CLEAN 2.15.0 LEGACY CODE
|
||||||
// THIS LINE:
|
// THIS LINE:
|
||||||
const stream = (this.session.openvidu.recorder || this.session.openvidu.openviduServerVersion.startsWith('2.16')) ? new Stream(this.session, streamOptions) : new StreamLEGACY(this.session, streamOptions);
|
const stream = this.session.openvidu.openviduServerVersion.startsWith('2.16') ? new Stream(this.session, streamOptions) : new StreamLEGACY(this.session, streamOptions);
|
||||||
// SHOULD GET BACK TO:
|
// SHOULD GET BACK TO:
|
||||||
// const stream = new Stream(this.session, streamOptions);
|
// const stream = new Stream(this.session, streamOptions);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue