mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
InTransit: allow setting data in add call
This commit is contained in:
parent
7466d252fb
commit
d7fd521899
2 changed files with 10 additions and 7 deletions
|
@ -573,6 +573,7 @@ sub startup {
|
|||
db => $db,
|
||||
journey => $journey,
|
||||
stop => $found,
|
||||
data => { trip_id => $journey->id }
|
||||
);
|
||||
};
|
||||
if ($@) {
|
||||
|
@ -581,11 +582,6 @@ sub startup {
|
|||
$promise->reject( 'INSERT failed: ' . $@ );
|
||||
return;
|
||||
}
|
||||
$self->in_transit->update_data(
|
||||
uid => $uid,
|
||||
db => $db,
|
||||
data => { trip_id => $journey->id }
|
||||
);
|
||||
|
||||
my $polyline;
|
||||
if ( $journey->polyline ) {
|
||||
|
|
|
@ -98,6 +98,7 @@ sub add {
|
|||
my $stop = $opt{stop};
|
||||
my $checkin_station_id = $opt{departure_eva};
|
||||
my $route = $opt{route};
|
||||
my $data = $opt{data};
|
||||
|
||||
my $json = JSON->new;
|
||||
|
||||
|
@ -126,7 +127,8 @@ sub add {
|
|||
data => JSON->new->encode(
|
||||
{
|
||||
rt => $train->departure_has_realtime ? 1
|
||||
: 0
|
||||
: 0,
|
||||
%{ $data // {} }
|
||||
}
|
||||
),
|
||||
backend_id => $backend_id,
|
||||
|
@ -183,7 +185,12 @@ sub add {
|
|||
sched_departure => $stop->{sched_dep},
|
||||
real_departure => $stop->{rt_dep} // $stop->{sched_dep},
|
||||
route => $json->encode( \@route ),
|
||||
data => JSON->new->encode( { rt => $stop->{rt_dep} ? 1 : 0 } ),
|
||||
data => JSON->new->encode(
|
||||
{
|
||||
rt => $stop->{rt_dep} ? 1 : 0,
|
||||
%{ $data // {} }
|
||||
}
|
||||
),
|
||||
backend_id => $backend_id,
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue