Fix handling of border points

This commit is contained in:
Antonia 2025-03-28 09:48:19 +01:00
parent 0397418714
commit 5b4b75212d

View file

@ -89,6 +89,8 @@ if checked_in or args.last_checkin is not None :
stops = response["intermediateStops"] stops = response["intermediateStops"]
now = time.time() now = time.time()
for stop in stops: for stop in stops:
if stop["scheduledDeparture"] is None and stop["scheduledArrival"] is None :
continue
if stop["realDeparture"] is not None and int(stop["realDeparture"]) > now : if stop["realDeparture"] is not None and int(stop["realDeparture"]) > now :
dep = timestring(stop, "Departure") dep = timestring(stop, "Departure")
arr = timestring(stop, "Arrival") arr = timestring(stop, "Arrival")