[mirotalksfu] - fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2024-03-10 07:51:55 +01:00
الأصل 071149b568
التزام 5c449b68d9

عرض الملف

@@ -251,7 +251,7 @@ module.exports = class Room {
const { maxIncomingBitrate, initialAvailableOutgoingBitrate, listenInfos } = this.webRtcTransport;
const webRtcTransportOptions = {
listenInfos: listenInfos,
...(this.webRtcServerActive ? { webRtcServer: this.webRtcServer } : { listenInfos }),
enableUdp: true,
enableTcp: true,
preferUdp: true,
@@ -259,8 +259,6 @@ module.exports = class Room {
initialAvailableOutgoingBitrate,
};
if (this.webRtcServerActive) webRtcTransportOptions.webRtcServer = this.webRtcServer;
const transport = await this.router.createWebRtcTransport(webRtcTransportOptions);
if (!transport) {