Skip to content
This repository has been archived by the owner on Sep 14, 2019. It is now read-only.

Commit

Permalink
Fix incorrect deserialization on maneuver
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Crocker committed Aug 2, 2016
1 parent c6e7c94 commit 8df08a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TBMapzenRouting/TBMapzenRoutingResultManeuver.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ + (instancetype _Nullable)maneuverFromDictionary:(NSDictionary * _Nonnull)respon
maneuver.arriveInstruction = response[@"arrive_instruction"];
maneuver.verbalArriveInstruction = response[@"verbal_arrive_instruction"];
maneuver.transitInfo = response[@"transit_info"];
maneuver.verbalMultiCue = response[@"verbal_multi_cue"];
maneuver.verbalMultiCue = [response[@"verbal_multi_cue"] boolValue];
maneuver.travelMode = response[@"travel_mode"];
maneuver.travelType = response[@"travel_type"];

Expand Down

0 comments on commit 8df08a5

Please sign in to comment.