2 Commits
Author SHA1 Message Date
austnv 006c6487f6 v0.7.8
Build and Deploy Backend / build-and-deploy (push) Successful in 1m10s
2026-06-26 13:23:30 +03:00
austnv 6a4999f48f fix: UUID -> str (.hex property) 2026-06-26 13:22:39 +03:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "uvpn-backend"
version = "0.7.7"
version = "0.7.8"
description = "FastAPI backend with Docker for uvpn.shop"
readme = "README.md"
requires-python = ">=3.12"
+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])).country_code
'country_code': (await remnawave.nodes.get_one_node(uuid=host.nodes[0].hex)).country_code
}
for host in hosts.root if not host.is_disabled and not host.is_hidden