fix: .hex -> str()
Build and Deploy Backend / build-and-deploy (push) Successful in 55s

This commit is contained in:
austnv
2026-06-26 13:26:58 +03:00
parent 006c6487f6
commit 3aa1f582e3
+1 -1
View File
@@ -42,7 +42,7 @@ async def get_nodes():
'name': clean_host_name(host.remark),
'address': host.address,
'port': host.port,
'country_code': (await remnawave.nodes.get_one_node(uuid=host.nodes[0].hex)).country_code
'country_code': (await remnawave.nodes.get_one_node(uuid=str(host.nodes[0]))).country_code
}
for host in hosts.root if not host.is_disabled and not host.is_hidden