diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-03-03 12:41:47 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-03-03 12:41:47 +0100 |
commit | 584bbc6b0823e6aaefcf3a54deb9e476e69d03c4 (patch) | |
tree | ef14f367eaab719820568f5f236d7d70f76347ef /lib | |
parent | 35f5d0474c85a7b1f771ffb6c63ef8ae10615631 (diff) |
Adjust wagongroup_subtype threshold for inconclusive results
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Travel/Status/DE/DBWagenreihung.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travel/Status/DE/DBWagenreihung.pm b/lib/Travel/Status/DE/DBWagenreihung.pm index fdbd77c..58c2477 100644 --- a/lib/Travel/Status/DE/DBWagenreihung.pm +++ b/lib/Travel/Status/DE/DBWagenreihung.pm @@ -588,7 +588,7 @@ sub wagongroup_subtype { my @likelihood = reverse sort { $ml{$a} <=> $ml{$b} } keys %ml; - if ( $ml{ $likelihood[0] } <= 2 ) { + if ( $ml{ $likelihood[0] } < 2 ) { # inconclusive return undef; |