Fix Gaiia readable_id: coerce to string (can be integer)
This commit is contained in:
parent
712174cc47
commit
e3c730a8e9
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue