summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-10-06 18:37:44 +0200
committerDaniel Friesel <derf@finalrewind.org>2019-10-06 18:37:44 +0200
commit583234d23beb1d94f2949df7c2d4e8cee3acaa1c (patch)
tree8076ad2b6ad142a7f11922d3d4b294a323d38e3f
parent3f48ec59ab15ca65cf8caf3dae0b00f7d67f0317 (diff)
Filter all messages >= 100 (including free-text ID 1000)
Thanks to @marudor for pointing it out
-rw-r--r--lib/Travel/Status/DE/IRIS.pm4
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 ];
}
}