From 2aa296950aeea6d23337581a6afc795eb0e8ccf7 Mon Sep 17 00:00:00 2001 From: usernamenotpresent <122516777+usernamenotpresent@users.noreply.github.com> Date: Thu, 23 Apr 2026 18:07:33 +0300 Subject: [PATCH] fix: Change Destinations type from []Waypoint to string Waypoints parsed in completly different structure. --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index 693c262..8b04a11 100644 --- a/types.go +++ b/types.go @@ -171,7 +171,7 @@ type ( DrivingSide string `json:"driving_side"` // Destinations of the way. Will be undefined if there are no destinations. - Destinations []Waypoint `json:"destinations"` + Destinations string `json:"destinations"` // Mode is a string signifying the mode of transportation. Mode string `json:"mode"`