Browse Source

fix(web): config.js syntax errors (#1980)

Aaron van Meerten 5 months ago
parent
commit
f18b182f77
1 changed files with 2 additions and 2 deletions
  1. 2 2
      web/rootfs/defaults/settings-config.js

+ 2 - 2
web/rootfs/defaults/settings-config.js

@@ -130,8 +130,8 @@ config.enableNoisyMicDetection = {{ $ENABLE_NOISY_MIC_DETECTION }};
 //
 
 config.p2p = {
-    enabled: {{ $ENABLE_P2P }};
-    codecPreferenceOrder: {{ $CODEC_ORDER_P2P }};
+    enabled: {{ $ENABLE_P2P }},
+    codecPreferenceOrder: {{ $CODEC_ORDER_P2P }},
     mobileCodecPreferenceOrder: {{ $CODEC_ORDER_P2P_MOBILE }}
 };