From 77cd2f5330ef28c3e6059673002043a757b23a79 Mon Sep 17 00:00:00 2001 From: usernamenotpresent Date: Fri, 24 Apr 2026 21:18:46 +0300 Subject: [PATCH] fix: change RouteStep.Exits type from uint16 to string --- types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types.go b/types.go index 8b04a11..337d35d 100644 --- a/types.go +++ b/types.go @@ -149,7 +149,7 @@ type ( Weight float32 `json:"weight"` // Exits is the exit numbers or names of the way. Will be undefined if there are no exit numbers or names. - Exits uint16 `json:"exits"` + Exits string `json:"exits"` // Name of the way along which travel proceeds. Name string `json:"name"`