From 27e0757c5fb413b3952ef4c22829d5123f10eb50 Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Wed, 16 Oct 2024 10:39:22 +0200 Subject: [PATCH] Change params.videoDirection to SendRecv when video is started --- Linphone/UI/Call/ViewModel/CallViewModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linphone/UI/Call/ViewModel/CallViewModel.swift b/Linphone/UI/Call/ViewModel/CallViewModel.swift index aa38da837..6ce03614d 100644 --- a/Linphone/UI/Call/ViewModel/CallViewModel.swift +++ b/Linphone/UI/Call/ViewModel/CallViewModel.swift @@ -696,7 +696,7 @@ class CallViewModel: ObservableObject { } else if params.videoDirection == .SendOnly { params.videoDirection = .Inactive } else if params.videoDirection == .Inactive { - params.videoDirection = .SendOnly + params.videoDirection = .SendRecv } }