Skip to content

Commit

Permalink
CHANGE: check if aprs data only at monitor channel.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaspeters committed Jan 7, 2025
1 parent 5f2d066 commit e9c239e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/umain.pas
Original file line number Diff line number Diff line change
Expand Up @@ -899,9 +899,10 @@ procedure TFMain.TMainTimer(Sender: TObject);
GetAutoBin(i, Data);

// handle aprs messages. APRS Messages can only be at the Monitoring Channel.
GetAPRSMessage(Data);
if i = 0 then
GetAPRSMessage(Data);

if (Length(Data) > 0) then
if Length(Data) > 0 then
AddTextToMemo(i, Data);
end;
end;
Expand Down

0 comments on commit e9c239e

Please sign in to comment.