diff --git a/src/app/mainview/components/OngoingCallPage.qml b/src/app/mainview/components/OngoingCallPage.qml index ad147b5a66d0b9337ba66c852dcac265efd56a17..476f36d1d7a51a71f741a84a50e6070473cdcdb5 100644 --- a/src/app/mainview/components/OngoingCallPage.qml +++ b/src/app/mainview/components/OngoingCallPage.qml @@ -319,15 +319,6 @@ Rectangle { target: CurrentCall function onPreviewIdChanged() { - if (CurrentCall.previewId !== "") { - if (root.callPreviewId !== "" && - root.callPreviewId !== CurrentCall.previewId) { - VideoDevices.stopDevice(root.callPreviewId) - } - VideoDevices.startDevice(CurrentCall.previewId) - } else { - VideoDevices.stopDevice(root.callPreviewId) - } root.callPreviewId = CurrentCall.previewId } }