Skip to content

Commit

Permalink
Fixed #469 - Alerts Window displays OOB Spots
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Sep 29, 2024
1 parent 0bf2df5 commit 147eb3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ TBC - 0.39.0
- Fixed ADIF import does not import records with old DXCC Entities (issue #459)
- Fixed ADIF import incorrectly uses Station Profile parameters (issue #461)
- Fixed Logbook - QSO Table Column Width Does Not Stick (issue #464)
- Fixed Alerts Window displays OOB Spots (issue #469)
- Fixed Field values from past QSOs are used incorrectly in case of WSJTX QSOs (#issue 470)

2024/08/29 - 0.38.0
Expand Down
2 changes: 1 addition & 1 deletion core/AlertEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ bool AlertRule::match(const DxSpot &spot) const
&& (dxCountry == 0 || dxCountry == spot.dxcc.dxcc)
&& (spot.status & dxLogStatusMap)
&& (mode == "*" || mode.contains("|" + spot.modeGroupString))
&& (band == "*" || band.contains("|" + spot.band))
&& (band == "*" || (!spot.band.isEmpty() && band.contains("|" + spot.band)))
&& (spotterCountry == 0 || spotterCountry == spot.dxcc_spotter.dxcc )
&& (dxContinent == "*" || dxContinent.contains("|" + spot.dxcc.cont))
&& (spotterContinent == "*" || spotterContinent.contains("|" + spot.dxcc_spotter.cont))
Expand Down

0 comments on commit 147eb3f

Please sign in to comment.