Skip to content

Commit

Permalink
fix departure time export.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwigway authored and kpwebb committed May 8, 2015
1 parent fb881fc commit 372253f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/ProcessGtfsSnapshotExport.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ else if (route.wheelchairBoarding.equals(AttributeAvailabilityType.UNAVAILABLE))

com.conveyal.gtfs.model.StopTime gst = new com.conveyal.gtfs.model.StopTime();
gst.arrival_time = st.arrivalTime != null ? st.arrivalTime : Entity.INT_MISSING;
gst.departure_time = st.departureTime != null ? gst.departure_time : Entity.INT_MISSING;
gst.departure_time = st.departureTime != null ? st.departureTime : Entity.INT_MISSING;

if (st.dropOffType != null)
gst.drop_off_type = st.dropOffType.toGtfsValue();
Expand Down

0 comments on commit 372253f

Please sign in to comment.