From 3b2242e25898ae7fa3a9aabda9c16247b6fc3098 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 15 Oct 2018 11:53:54 -0400 Subject: [PATCH] Fixed display of APRS frames where a space after the colon causes concern --- decodedtext.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/decodedtext.cpp b/decodedtext.cpp index 620f55e..1af7132 100644 --- a/decodedtext.cpp +++ b/decodedtext.cpp @@ -197,6 +197,8 @@ bool DecodedText::tryUnpackDirected(){ message_ = QString(parts.join("")); } + message_ = message_.replace("APRS: ", "APRS:"); + directed_ = parts; frameType_ = type; return true;