diff --git a/travelynx-waybar.py b/travelynx-waybar.py index 1e5e221..1a557d9 100755 --- a/travelynx-waybar.py +++ b/travelynx-waybar.py @@ -93,10 +93,13 @@ if checked_in or args.last_checkin is not None : dep = timestring(stop, "Departure") arr = timestring(stop, "Arrival") tooltip = tooltip + f'\n{arr}–{dep} {stop["name"]}' - elif int(stop["scheduledDeparture"]) > now : + elif stop["scheduledDeparture"] is not None and int(stop["scheduledDeparture"]) > now : dep = humantime(stop["scheduledDeparture"]) arr = humantime(stop["scheduledArrival"]) tooltip = tooltip + f'\n{arr}–{dep} {stop["name"]}' + elif stop["scheduledDeparture"] is None and int(stop["scheduledArrival"]) > now : + arr = humantime(stop["scheduledArrival"]) + tooltip = tooltip + f'\narrival {arr} {stop["name"]}' print(json.dumps({"text": st, "tooltip": tooltip, "class": "active", "percentage": ""}))