Compare commits

...

1 Commits

Author SHA1 Message Date
Jordan Sherer c0e8a791e6 Hotfix. Broken heartbeat ack when a directed callsign is selected 2018-10-31 18:17:34 -04:00
+1 -1
View File
@@ -1654,7 +1654,7 @@ QList<QPair<QString, int>> Varicode::buildMessageFrames(
if(!selectedCall.isEmpty() && !line.startsWith(selectedCall) && !line.startsWith("`")){ if(!selectedCall.isEmpty() && !line.startsWith(selectedCall) && !line.startsWith("`")){
bool lineStartsWithBaseCall = ( bool lineStartsWithBaseCall = (
line.startsWith("@ALLCALL") || line.startsWith("@ALLCALL") ||
line.startsWith("HEARTBEAT") || line.contains("HEARTBEAT") ||
Varicode::startsWithCQ(line) Varicode::startsWithCQ(line)
); );