From 54f7e6f04537e1eb8076a8e9433739aaf3b6f23e Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Fri, 9 Apr 2021 22:40:26 +0200 Subject: [PATCH] closing #72 --- src/TaskLora.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/TaskLora.cpp b/src/TaskLora.cpp index e4c7d88..dc81a55 100644 --- a/src/TaskLora.cpp +++ b/src/TaskLora.cpp @@ -50,6 +50,11 @@ bool LoraTask::loop(std::shared_ptr system) { return; } + if (!path.isEmpty()) { + path += ","; + } + msg->setPath(path + "qAR," + system->getUserConfig()->callsign); + std::shared_ptr is_thread = std::static_pointer_cast(system->getTaskManager().getTask(TASK_APRS_IS)); is_thread->inputQueue.addElement(msg); system->getDisplay().addFrame(std::shared_ptr(new TextFrame("LoRa", msg->toString())));