diff options
author | Daniel Friesel <derf@finalrewind.org> | 2013-02-10 16:17:11 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2013-02-10 16:17:11 +0100 |
commit | 945379f1ca34642556bccefe637c3d444d893210 (patch) | |
tree | 2039a74eeeb75b228dda6ee30971ea889379221b /cgi/index.pl | |
parent | f25f84f9a8de6cc3a7ee1431be413b35f1de7e6b (diff) |
Fix encoding (it's actually UTF-8)
Diffstat (limited to 'cgi/index.pl')
-rw-r--r-- | cgi/index.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 807907a..6abb47a 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -2,6 +2,8 @@ use Mojolicious::Lite; use Cache::File; use Travel::Status::DE::DeutscheBahn; +use 5.014; +use utf8; our $VERSION = '0.03'; @@ -85,7 +87,7 @@ sub handle_request { $info = undef; } if ($info) { - $info =~ s{ ^ (?: ca\. \s* )? \+ (\d+) }{Verspaetung ca. $1 Minuten}x; + $info =~ s{ ^ (?: ca\. \s* )? \+ (\d+) }{Verspätung ca. $1 Minuten}x; $info =~ s{ 1 \s Minute\Kn }{}x; } push( |