Browse Source

ref(config): Remove legacy multistream backward compat flags

factor2
Hristo Terezov 5 months ago
parent
commit
217b803652
2 changed files with 0 additions and 22 deletions
  1. 0
    6
      config.js
  2. 0
    16
      debian/jitsi-meet-web-config.postinst

+ 0
- 6
config.js View File

@@ -1890,12 +1890,6 @@ var config = {
1890 1890
     // hideLoginButton: true,
1891 1891
 };
1892 1892
 
1893
-// Temporary backwards compatibility with old mobile clients.
1894
-config.flags = config.flags || {};
1895
-config.flags.sourceNameSignaling = true;
1896
-config.flags.sendMultipleVideoStreams = true;
1897
-config.flags.receiveMultipleVideoStreams = true;
1898
-
1899 1893
 // Set the default values for JaaS customers
1900 1894
 if (enableJaaS) {
1901 1895
     config.dialInNumbersUrl = 'https://conference-mapper.jitsi.net/v1/access/dids';

+ 0
- 16
debian/jitsi-meet-web-config.postinst View File

@@ -175,22 +175,6 @@ case "$1" in
175 175
             fi
176 176
         fi
177 177
 
178
-        # Fixes multi-stream flags to workaround problem with mobile joining a multi-stream call with multi-stream disabled
179
-        FIX_MSG="// Temporary backwards compatibility with old mobile clients."
180
-        if ! grep -q "^${FIX_MSG}" $JITSI_MEET_CONFIG; then
181
-            echo  $FIX_MSG >> $JITSI_MEET_CONFIG
182
-            echo "config.flags = config.flags || {};" >> $JITSI_MEET_CONFIG
183
-        fi
184
-        if ! grep -q "^config.flags.sourceNameSignaling*" $JITSI_MEET_CONFIG; then
185
-            echo "config.flags.sourceNameSignaling = true;" >> $JITSI_MEET_CONFIG
186
-        fi
187
-        if ! grep -q "^config.flags.sendMultipleVideoStreams*" $JITSI_MEET_CONFIG; then
188
-            echo "config.flags.sendMultipleVideoStreams = true;" >> $JITSI_MEET_CONFIG
189
-        fi
190
-        if ! grep -q "^config.flags.receiveMultipleVideoStreams*" $JITSI_MEET_CONFIG; then
191
-            echo "config.flags.receiveMultipleVideoStreams = true;" >> $JITSI_MEET_CONFIG
192
-        fi
193
-
194 178
         if [[ "$FORCE_OPENRESTY" = "true" ]]; then
195 179
             NGX_COMMON_CONF_PATH="/usr/local/openresty/nginx/conf/$JVB_HOSTNAME.conf"
196 180
             NGX_SVC_NAME=openresty

Loading…
Cancel
Save