From 2d21eb5b966e0a3671931f382a5c1b073e7dd0d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 26 Jan 2022 12:59:56 +0100 Subject: [PATCH] fix(ProxyConnection) set signaling layer Regression introduced in https://github.com/jitsi/lib-jitsi-meet/commit/5c9b90511120ae42660176afc0715f8c8886ef68 --- modules/proxyconnection/ProxyConnectionPC.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxyconnection/ProxyConnectionPC.js b/modules/proxyconnection/ProxyConnectionPC.js index e1b176cf2c..e0ecbf2a2e 100644 --- a/modules/proxyconnection/ProxyConnectionPC.js +++ b/modules/proxyconnection/ProxyConnectionPC.js @@ -277,7 +277,7 @@ export default class ProxyConnectionPC { * An additional initialize call is necessary to properly set instance * variable for calling. */ - peerConnection.initialize(roomStub, this._rtc, configStub); + peerConnection.initialize(roomStub, this._rtc, signalingLayer, configStub); return peerConnection; }