From cd58108bfefc9a8db8f5209765736f76499f28cf Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Fri, 27 Sep 2019 14:33:05 +0200 Subject: [PATCH] [AFV] Ref T730, reload settings after starting audio so they are applied --- src/blackcore/afv/clients/afvclient.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/blackcore/afv/clients/afvclient.cpp b/src/blackcore/afv/clients/afvclient.cpp index e3eeb9f08..22cee26bb 100644 --- a/src/blackcore/afv/clients/afvclient.cpp +++ b/src/blackcore/afv/clients/afvclient.cpp @@ -147,6 +147,7 @@ namespace BlackCore m_startDateTimeUtc = QDateTime::currentDateTimeUtc(); m_connection->setReceiveAudio(true); m_voiceServerPositionTimer.start(5000); + this->onSettingsChanged(); // make sure all settings are applied m_isStarted = true; CLogMessage(this).info(u"Started [Input: %1] [Output: %2]") << inputDevice.deviceName() << outputDevice.deviceName(); }