From bb24724587ede2f7c2da8ef5284334baf46f6e29 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Sun, 6 Jan 2019 22:48:44 -0500 Subject: [PATCH] Cut down on a few false positives of auto-prepended callsigns with text override for words 3 characters or less. --- varicode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varicode.cpp b/varicode.cpp index 647c504..4098bd0 100644 --- a/varicode.cpp +++ b/varicode.cpp @@ -1698,7 +1698,7 @@ QList> Varicode::buildMessageFrames( #if AUTO_PREPEND_DIRECTED_ALLOW_TEXT_CALLSIGNS auto calls = Varicode::parseCallsigns(line); - bool lineStartsWithStandardCall = !calls.isEmpty() && line.startsWith(calls.first()) && calls.first().length() > 2; + bool lineStartsWithStandardCall = !calls.isEmpty() && line.startsWith(calls.first()) && calls.first().length() > 3; #else bool lineStartsWithStandardCall = false; #endif