Fix Gaiia readable_id: coerce to string (can be integer)

This commit is contained in:
Graham McIntire 2026-02-14 16:15:58 -06:00
parent 712174cc47
commit e3c730a8e9

View file

@ -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"]),