You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
madatory options should expect {"IceRestart": false} should not pass as true
Same with renegotiate... { "useUpdate" false"} should not evaluate as true
See renegotiate:
if (options['useUpdate'] != null)
should be:
if (options['useUpdate'] != null && options['useUpdate'] == true)
Expected behavior
Expected the config to work like any expected configuration
System Infomation()
Flutter SDK Version: 3.22
Target OS and Version: N/A
Host OS and Version: N/A
The text was updated successfully, but these errors were encountered:
Describe the bug
madatory options should expect {"IceRestart": false} should not pass as true
Same with renegotiate... { "useUpdate" false"} should not evaluate as true
See renegotiate:
should be:
Expected behavior
Expected the config to work like any expected configuration
System Infomation()
Flutter SDK Version: 3.22
Target OS and Version: N/A
Host OS and Version: N/A
The text was updated successfully, but these errors were encountered: