diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-07-07 10:27:49 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-07-07 10:27:49 +0200 |
commit | 1bf2ad57fdc64aa78685af6ebc568af1a41bfeb3 (patch) | |
tree | 53496935939aae98abe3f66ee6490cf192a43e9f /bin/db-ris | |
parent | 10e549ef7479b1bd08ced124164b5edcd8c1a30b (diff) |
db-ris: Improve delayed / on-time info filter
Diffstat (limited to 'bin/db-ris')
-rwxr-xr-x | bin/db-ris | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -87,9 +87,7 @@ sub display_result { sub filter_info { my ($info) = @_; - if ( $info =~ m{ ^ (?: p.nktlich | k [.] A [.] ) $ }ox ) { - return q{}; - } + $info =~ s{ (?: ^ | , ) (?: p.nktlich | k [.] A [.] ) }{}x; return $info; } |