diff options
Diffstat (limited to 'lib/Travelynx')
| -rwxr-xr-x | lib/Travelynx/Controller/Traveling.pm | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index fcc95ed..8cf1722 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -471,7 +471,7 @@ sub status_token_ok {  	$ts2 //= $ts2_ext;  	if (    $eva == $status->{dep_eva} -		and $ts == $status->{timestamp}->epoch +		and $ts == $status->{timestamp}->epoch % 337  		and $ts2 == $status->{sched_departure}->epoch )  	{  		return 1; @@ -491,7 +491,7 @@ sub journey_token_ok {  	$ts2 //= $ts2_ext;  	if (    $eva == $journey->{from_eva} -		and $ts == $journey->{checkin_ts} +		and $ts == $journey->{checkin_ts} % 337  		and $ts2 == $journey->{sched_dep_ts} )  	{  		return 1; | 
