Skip to content

Commit

Permalink
routeType string error in GIS export fixes conveyal#225
Browse files Browse the repository at this point in the history
  • Loading branch information
landonreed committed Oct 14, 2015
1 parent 31815cb commit 8108168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/GisExport.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void run() {
featureBuilder.add(r.routeDesc);

if (r.routeTypeId != null)
featureBuilder.add(gtx.routeTypes.get(r.routeTypeId).toString());
featureBuilder.add(gtx.routeTypes.get(r.routeTypeId).localizedVehicleType);
else
featureBuilder.add("");

Expand Down

0 comments on commit 8108168

Please sign in to comment.