From c0e8a791e6bba53f056c447f57aac90bc959c88a Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 31 Oct 2018 18:17:34 -0400 Subject: [PATCH] Hotfix. Broken heartbeat ack when a directed callsign is selected --- varicode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/varicode.cpp b/varicode.cpp index 3f2d1b5..06ef14b 100644 --- a/varicode.cpp +++ b/varicode.cpp @@ -1654,7 +1654,7 @@ QList> Varicode::buildMessageFrames( if(!selectedCall.isEmpty() && !line.startsWith(selectedCall) && !line.startsWith("`")){ bool lineStartsWithBaseCall = ( line.startsWith("@ALLCALL") || - line.startsWith("HEARTBEAT") || + line.contains("HEARTBEAT") || Varicode::startsWithCQ(line) );