From 75da59833af464377b69efd2b1e1335c261fb472 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Mon, 24 Jan 2022 01:02:27 +0100 Subject: [PATCH] Fixed server bug --- source_modules/sdrpp_server_source/src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source_modules/sdrpp_server_source/src/main.cpp b/source_modules/sdrpp_server_source/src/main.cpp index bfe82188..85552824 100644 --- a/source_modules/sdrpp_server_source/src/main.cpp +++ b/source_modules/sdrpp_server_source/src/main.cpp @@ -111,7 +111,10 @@ private: if (_this->running) { return; } // TODO: Set configuration here - if (_this->client) { _this->client->start(); } + if (_this->client) { + _this->client->setFrequency(_this->freq); + _this->client->start(); + } _this->running = true; spdlog::info("SDRPPServerSourceModule '{0}': Start!", _this->name);