8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 799257b commit 7617f60Copy full SHA for 7617f60
android/src/main/java/com/cloudwebrtc/webrtc/MethodCallHandlerImpl.java
@@ -985,6 +985,11 @@ private RTCConfiguration parseRTCConfiguration(ConstraintsMap map) {
985
.setEnableAes128Sha1_32CryptoCipher(cryptoOptions.hasKey("enableAes128Sha1_32CryptoCipher") && cryptoOptions.getBoolean("enableAes128Sha1_32CryptoCipher"))
986
.createCryptoOptions();
987
}
988
+ if (map.hasKey("enableCpuOveruseDetection")
989
+ && map.getType("enableCpuOveruseDetection") == ObjectType.Boolean) {
990
+ final boolean v = map.getBoolean("enableCpuOveruseDetection");
991
+ conf.enableCpuOveruseDetection = v;
992
+ }
993
return conf;
994
995
0 commit comments