From 64c9b5b160d392793b004a618635bd20d1653b2d Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 1 Oct 2020 19:48:18 +0200 Subject: traewelling checkin: the time limitation isn't needed --- lib/Travelynx/Model/Traewelling.pm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'lib/Travelynx/Model/Traewelling.pm') 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; } -- cgit v1.2.3