From 06c873557d7842b015a4eb3e7ed02e27a6177824 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Wed, 11 Feb 2026 17:56:31 +0100 Subject: fix: Normalize headsign handling and improve destination trimming in arrival processing --- src/Enmarcha.Sources.OpenTripPlannerGql/Queries/ArrivalsAtStop.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Enmarcha.Sources.OpenTripPlannerGql') diff --git a/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/ArrivalsAtStop.cs b/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/ArrivalsAtStop.cs index 8338373..64e148d 100644 --- a/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/ArrivalsAtStop.cs +++ b/src/Enmarcha.Sources.OpenTripPlannerGql/Queries/ArrivalsAtStop.cs @@ -37,6 +37,7 @@ public class ArrivalsAtStopContent : IGraphRequest gtfsId serviceId routeShortName + tripHeadsign route {{ gtfsId color @@ -112,6 +113,8 @@ public class ArrivalsAtStopResponse : AbstractGraphResponse [JsonPropertyName("routeShortName")] public required string RouteShortName { get; set; } + [JsonPropertyName("tripHeadsign")] public string? TripHeadsign { get; set; } + [JsonPropertyName("departureStoptime")] public required DepartureStoptime DepartureStoptime { get; set; } -- cgit v1.3