diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-07-27 07:03:36 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-07-27 07:03:36 +0200 |
commit | 1edae95223de4ed49aa09625ae405bb3ce16e957 (patch) | |
tree | 8852dbcae6e57e3606da039a441a04f2213abb5a | |
parent | 2b5c056ddec4e80fb92ba0e315b6dd1fc1910de9 (diff) |
get_user_status: correctly report EFA checkins
-rwxr-xr-x | lib/Travelynx.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 66c4d58..26651b9 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -2477,6 +2477,7 @@ sub startup { backend_id => $latest->{backend_id}, backend_name => $latest->{backend_name}, is_dbris => $latest->{is_dbris}, + is_efa => $latest->{is_efa}, is_iris => $latest->{is_iris}, is_hafas => $latest->{is_hafas}, is_motis => $latest->{is_motis}, @@ -2543,6 +2544,7 @@ sub startup { backend => { id => $status->{backend_id}, type => $status->{is_dbris} ? 'DBRIS' + : $status->{is_efa} ? 'EFA' : $status->{is_hafas} ? 'HAFAS' : $status->{is_motis} ? 'MOTIS' : 'IRIS-TTS', |