diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Travelynx.pm | 2 | ||||
-rw-r--r-- | lib/Travelynx/Command/database.pm | 2 | ||||
-rw-r--r-- | lib/Travelynx/Model/Users.pm | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 6c2dd50..8e6a465 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -130,7 +130,7 @@ sub startup { # security and usability for websites that want to maintain user's logged-in # session after the user arrives from an external link". In practice, # Safari (both iOS and macOS) does not send a SameSite=lax cookie when - # following a link from an external site. So, marudor.de providing a + # following a link from an external site. So, bahn.expert providing a # checkin link to travelynx.de/s/whatever does not work because the user # is not logged in due to Safari not sending the cookie. # diff --git a/lib/Travelynx/Command/database.pm b/lib/Travelynx/Command/database.pm index 32522be..d580c05 100644 --- a/lib/Travelynx/Command/database.pm +++ b/lib/Travelynx/Command/database.pm @@ -1072,7 +1072,7 @@ my @migrations = ( # v24 -> v25 # travelynx 1.23 adds optional links to external services, e.g. - # DBF or marudor.de departure boards + # DBF or bahn.expert departure boards sub { my ($db) = @_; $db->query( diff --git a/lib/Travelynx/Model/Users.pm b/lib/Travelynx/Model/Users.pm index 09d9538..255b939 100644 --- a/lib/Travelynx/Model/Users.pm +++ b/lib/Travelynx/Model/Users.pm @@ -13,9 +13,9 @@ use DateTime; my @sb_templates = ( undef, [ 'DBF', 'https://dbf.finalrewind.org/{name}?rt=1#{tt}{tn}' ], - [ 'marudor.de', 'https://marudor.de/{name}#{id}' ], + [ 'marudor.de', 'https://bahn.expert/{name}#{id}' ], [ 'NVM', 'https://nvm.finalrewind.org/board/{eva}#{tt}{tn}' ], - [ 'marudor.de/regional', 'https://marudor.de/regional/{name}#{id}' ], + [ 'marudor.de/regional', 'https://bahn.expert/regional/{name}#{id}' ], ); sub new { |