From 966b261c0d96d320354b90be82680ab7ae58f67b Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Thu, 10 Oct 2019 01:28:25 +0200 Subject: [PATCH] [AFV] Ref T730, reverted fix NOT to start in function CAfvClient::restartWithNewDevices --- src/blackcore/afv/clients/afvclient.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/blackcore/afv/clients/afvclient.cpp b/src/blackcore/afv/clients/afvclient.cpp index c97cc9c98..0812feba1 100644 --- a/src/blackcore/afv/clients/afvclient.cpp +++ b/src/blackcore/afv/clients/afvclient.cpp @@ -170,7 +170,11 @@ namespace BlackCore bool CAfvClient::restartWithNewDevices(const CAudioDeviceInfo &inputDevice, const CAudioDeviceInfo &outputDevice) { - if (! m_isStarted) { return true; } + if (!m_isStarted) + { + this->startAudio(inputDevice, outputDevice, allTransceiverIds()); + return true; + } if (QThread::currentThread() != this->thread()) {