diff options
| author | Daniel Friesel <derf@finalrewind.org> | 2020-10-01 19:48:18 +0200 | 
|---|---|---|
| committer | Daniel Friesel <derf@finalrewind.org> | 2020-10-01 19:48:18 +0200 | 
| commit | 64c9b5b160d392793b004a618635bd20d1653b2d (patch) | |
| tree | 5394fcb1ed2211c2c2722c568babc1fd5c947e4a /lib | |
| parent | 07e0f8970681422a48fec9da5d14ad2a2b3735bd (diff) | |
traewelling checkin: the time limitation isn't needed
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Travelynx/Model/Traewelling.pm | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/lib/Travelynx/Model/Traewelling.pm b/lib/Travelynx/Model/Traewelling.pm index eb7201f..181c519 100644 --- a/lib/Travelynx/Model/Traewelling.pm +++ b/lib/Travelynx/Model/Traewelling.pm @@ -183,8 +183,7 @@ sub set_sync {  sub get_pushable_accounts {  	my ($self) = @_; -	my $now    = $self->now->epoch; -	my $res    = $self->{pg}->db->query( +	my $res = $self->{pg}->db->query(  		qq{select t.user_id as uid, t.token as token, t.data as data,  			i.checkin_station_id as dep_eva, i.checkout_station_id as arr_eva,  			i.data as journey_data, i.train_type as train_type, @@ -195,10 +194,7 @@ sub get_pushable_accounts {  			where t.push_sync = True  			and i.checkout_station_id is not null  			and i.cancelled = False -			and (extract(epoch from i.sched_departure) > ? -				or extract(epoch from i.real_departure) > ?) -			and extract(epoch from i.sched_departure) < ? -		}, $now - 300, $now - 300, $now + 600 +		}  	);  	return $res->expand->hashes->each;  } | 
