summaryrefslogtreecommitdiff
path: root/lib/Travel/Status/DE/VRR.pm
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-11-19 19:55:37 +0100
committerDaniel Friesel <derf@finalrewind.org>2011-11-19 20:31:25 +0100
commit523817239799733c15b900506ad57c5fc87c29de (patch)
tree8aa75cbeba4d828d2d5ccc99f6fc96d598d0ebbf /lib/Travel/Status/DE/VRR.pm
parentc95333993e11598c36411bf432e5508d7e6fa1b7 (diff)
sanitize platform number, add platform_db accessor
Diffstat (limited to 'lib/Travel/Status/DE/VRR.pm')
-rw-r--r--lib/Travel/Status/DE/VRR.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Travel/Status/DE/VRR.pm b/lib/Travel/Status/DE/VRR.pm
index f976c1e..065d56c 100644
--- a/lib/Travel/Status/DE/VRR.pm
+++ b/lib/Travel/Status/DE/VRR.pm
@@ -187,12 +187,19 @@ sub results {
my $countdown = $e->getAttribute('countdown');
my $delay = $e_info->getAttribute('delay') // 0;
+ my $platform_is_db = 0;
+
+ if ( $platform =~ s{ ^ \# }{}ox ) {
+ $platform_is_db = 1;
+ }
+
push(
@results,
Travel::Status::DE::VRR::Result->new(
date => $rdate,
time => $rtime,
platform => $platform,
+ platform_db => $platform_is_db,
line => $line,
destination => decode( 'UTF-8', $dest ),
countdown => $countdown,