Skip to content

Commit

Permalink
do not show old traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
apps4av committed Sep 2, 2024
1 parent d4f0f78 commit 662e2e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/gdl90/traffic_cache.dart
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ class TrafficCache {

for(Traffic? check in _traffic) {
if(null != check) {
if(check.isOld()) {
// do not show old
continue;
}
ret.add(check);
}
}
Expand Down

0 comments on commit 662e2e9

Please sign in to comment.