From e3c730a8e984fba9229f39b10c080b9615673fca Mon Sep 17 00:00:00 2001 From: Graham McIntie Date: Sat, 14 Feb 2026 16:15:58 -0600 Subject: [PATCH] Fix Gaiia readable_id: coerce to string (can be integer) --- lib/towerops/gaiia/sync.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/towerops/gaiia/sync.ex b/lib/towerops/gaiia/sync.ex index 05573ae9..f78902a4 100644 --- a/lib/towerops/gaiia/sync.ex +++ b/lib/towerops/gaiia/sync.ex @@ -87,7 +87,7 @@ defmodule Towerops.Gaiia.Sync do %{ gaiia_id: node["id"], - readable_id: node["readableId"], + readable_id: to_string(node["readableId"]), name: node["name"], status: get_in(node, ["status", "name"]), account_type: get_in(node, ["type", "name"]),