From be7e20ae3badfebfa565f92e0bd67773c99b8ea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arvo=20J=C3=A4rve?= Date: Mon, 14 Feb 2022 09:07:39 +0200 Subject: [PATCH] fix retransmitting counter problem --- qsohistory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qsohistory.cpp b/qsohistory.cpp index a59ac84d..12abbb46 100644 --- a/qsohistory.cpp +++ b/qsohistory.cpp @@ -446,7 +446,7 @@ void QsoHistory::message(QString const& callsign, Status status, int priority, Q t.status = RCQ; t.srx_c = RCQ; } - if (status == t.stx_c) t.count += 1; + if (status == t.stx_c) { if (t.tx == freq) t.count += 1;} else { t.count = 1; }