fixed: Fix issue where some nodepacks were displayed redundantly in custom nodes manager.

This commit is contained in:
Dr.Lt.Data
2025-06-25 00:18:18 +09:00
parent 2795d00d1e
commit 815784e809
4 changed files with 53 additions and 12 deletions

View File

@@ -865,7 +865,7 @@ async def fetch_customnode_list(request):
channel = found
result = dict(channel=channel, node_packs=node_packs)
result = dict(channel=channel, node_packs=node_packs.to_dict())
return web.json_response(result, content_type='application/json')