Prevent the display of lines with negative age values.

This commit is contained in:
Uwe Risse 2022-04-05 18:08:27 +02:00
parent cf9233b650
commit 2d906247d7
1 changed files with 1 additions and 1 deletions

View File

@ -3474,7 +3474,7 @@ void MainWindow::ARRL_Digi_Display()
if(icall.value().txEven) itx=0;
int snr=icall.value().snr;
int freq=icall.value().audioFreq;
if(age>maxAge) {
if(age>maxAge or age<0) {
icall.remove();
} else {
bool bReady=false;