Skip to content

Commit 372253f

Browse files
mattwigwaykpwebb
authored andcommitted
fix departure time export.
1 parent fb881fc commit 372253f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/jobs/ProcessGtfsSnapshotExport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ else if (route.wheelchairBoarding.equals(AttributeAvailabilityType.UNAVAILABLE))
201201

202202
com.conveyal.gtfs.model.StopTime gst = new com.conveyal.gtfs.model.StopTime();
203203
gst.arrival_time = st.arrivalTime != null ? st.arrivalTime : Entity.INT_MISSING;
204-
gst.departure_time = st.departureTime != null ? gst.departure_time : Entity.INT_MISSING;
204+
gst.departure_time = st.departureTime != null ? st.departureTime : Entity.INT_MISSING;
205205

206206
if (st.dropOffType != null)
207207
gst.drop_off_type = st.dropOffType.toGtfsValue();

0 commit comments

Comments
 (0)