diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-10-06 18:37:44 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-10-06 18:37:44 +0200 |
commit | 583234d23beb1d94f2949df7c2d4e8cee3acaa1c (patch) | |
tree | 8076ad2b6ad142a7f11922d3d4b294a323d38e3f /lib | |
parent | 3f48ec59ab15ca65cf8caf3dae0b00f7d67f0317 (diff) |
Filter all messages >= 100 (including free-text ID 1000)
Thanks to @marudor for pointing it out
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Travel/Status/DE/IRIS.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/IRIS.pm b/lib/Travel/Status/DE/IRIS.pm index e1b7410..aa4ffb6 100644 --- a/lib/Travel/Status/DE/IRIS.pm +++ b/lib/Travel/Status/DE/IRIS.pm @@ -451,7 +451,9 @@ sub get_realtime { # All observed cases of message ID 900 were related to bus # connections ("Anschlussbus wartet"). We can't access which bus # it refers to, so we don't show that either. - if ( defined $value and $value > 1 and $value != 900 ) { + # ID 1000 is a generic free text message, which (as we lack access + # to the text itself) is not helpful either. + if ( defined $value and $value > 1 and $value < 100 ) { $messages{$msgid} = [ $ts, $type, $value ]; } } |