From 045cf7fddc871b4734b5a59866e7beb5f621a183 Mon Sep 17 00:00:00 2001
From: Riccardo Boero <ribo@nilu.no>
Date: Wed, 3 Apr 2024 09:56:42 +0200
Subject: [PATCH] moved error values of travel time from nothing to missing

---
 src/FACT_road.jl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/FACT_road.jl b/src/FACT_road.jl
index 9e6e42b..b5f4892 100644
--- a/src/FACT_road.jl
+++ b/src/FACT_road.jl
@@ -63,7 +63,7 @@ function travel_time_in_minutes(ws_host_port::String, selection::Dict)
                 travel_time = travel_time_seconds / 60
             catch e
                 println("Error during HTTP request or response parsing: ", e)
-                travel_time = nothing  # Use `nothing` to represent null in Julia
+                travel_time = missing  # Use `missing` to represent null in Julia
             end
 
             # Populate the columns
-- 
GitLab