diff --git a/src/ntfs/read.rs b/src/ntfs/read.rs index fdfb2d34d..00e6f7a53 100644 --- a/src/ntfs/read.rs +++ b/src/ntfs/read.rs @@ -321,8 +321,8 @@ where sequence: stop_time.stop_sequence, arrival_time: stop_time.arrival_time, departure_time: stop_time.departure_time, - start_pickup_drop_off_window: None, - end_pickup_drop_off_window: None, + start_pickup_drop_off_window: stop_time.start_pickup_drop_off_window, + end_pickup_drop_off_window: stop_time.end_pickup_drop_off_window, boarding_duration: stop_time.boarding_duration, alighting_duration: stop_time.alighting_duration, pickup_type: stop_time.pickup_type, diff --git a/src/objects.rs b/src/objects.rs index 0c34a5d44..4fbcaf5da 100644 --- a/src/objects.rs +++ b/src/objects.rs @@ -687,10 +687,14 @@ impl GetObjectType for VehicleJourney { impl VehicleJourney { pub fn first_departure_time(&self) -> Option