mirror of
https://github.com/jtdx-project/jtdx
synced 2026-08-13 17:35:38 -04:00
fix retransmitting counter problem
This commit is contained in:
parent
fb2549ea84
commit
be7e20ae3b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue