mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Fix useless assignement in webrtc/library_godot_webrtc.js
(cherry picked from commit 4f654dad13)
This commit is contained in:
committed by
Rémi Verschelde
parent
0c50509326
commit
e4b3461441
@@ -208,7 +208,7 @@ const GodotRTCPeerConnection = {
|
||||
if (!ref) {
|
||||
return;
|
||||
}
|
||||
let state = 5; // CLOSED
|
||||
let state;
|
||||
switch (p_conn.iceConnectionState) {
|
||||
case 'new':
|
||||
state = 0;
|
||||
|
||||
Reference in New Issue
Block a user