Change defaults

This commit is contained in:
Isaac 2025-05-05 22:31:26 +02:00
parent 995fea2943
commit 9db5eb726d
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ final class CallControllerNodeV2: ViewControllerTracingNode, CallControllerNodeP
self.conferenceAddParticipant?()
}
var enableVideoSharpening = true
var enableVideoSharpening = false
if let data = call.context.currentAppConfiguration.with({ $0 }).data, let value = data["ios_call_video_sharpening"] as? Double {
enableVideoSharpening = value != 0.0
}

View File

@ -1247,7 +1247,7 @@ final class VideoChatScreenComponent: Component {
}
self.callState = component.initialData.callState
self.enableVideoSharpening = true
self.enableVideoSharpening = false
if let data = component.initialCall.accountContext.currentAppConfiguration.with({ $0 }).data, let value = data["ios_call_video_sharpening"] as? Double {
self.enableVideoSharpening = value != 0.0
}