Video messages experiment

This commit is contained in:
Ilya Laktyushin 2024-02-18 14:40:41 -04:00
parent 6fc193995e
commit e90b96676e
2 changed files with 7 additions and 3 deletions

View File

@ -817,8 +817,12 @@ public final class ManagedAudioSession: NSObject {
mode = .voiceChat
case .videoCall:
mode = .videoChat
case .record(_, true, _):
case let .record(_, video, withOthers):
if video && !withOthers {
mode = .videoRecording
} else {
mode = .default
}
default:
mode = .default
}

View File

@ -1,5 +1,5 @@
{
"app": "10.8.1",
"app": "10.8.2",
"bazel": "7.0.2",
"xcode": "15.2",
"macos": "13.0"