Fixed display of APRS frames where a space after the colon causes concern

This commit is contained in:
Jordan Sherer 2018-10-15 11:53:54 -04:00
parent c42c3b7ad1
commit 3b2242e258

View File

@ -197,6 +197,8 @@ bool DecodedText::tryUnpackDirected(){
message_ = QString(parts.join(""));
}
message_ = message_.replace("APRS: ", "APRS:");
directed_ = parts;
frameType_ = type;
return true;