[mirotalksfu] - update bindable.js

هذا الالتزام موجود في:
Miroslav Pejic
2024-04-25 12:28:19 +02:00
الأصل 4ee5acc477
التزام d342cd501c

عرض الملف

@@ -61,7 +61,9 @@ async function main() {
const webRtcServerIpInfo = config.mediasoup.webRtcServerOptions.listenInfos[0];
const webRtcServerIpAddress =
webRtcServerIpInfo.ip !== '0.0.0.0' ? webRtcServerIpInfo.ip : webRtcServerIpInfo.announcedAddress;
const webRtcServerStartPort = webRtcServerIpInfo.port;
const webRtcServerStartPort = webRtcServerIpInfo.port
? webRtcServerIpInfo.port
: webRtcServerIpInfo.portRange.min;
await checkWebRtcServerPorts(webRtcServerIpAddress, webRtcServerStartPort, workers);
}