From 8b9ae36072f077920a6ec2dc4ef2c9f63e656032 Mon Sep 17 00:00:00 2001 From: ajvpot <553597+ajvpot@users.noreply.github.com> Date: Mon, 8 Sep 2025 17:32:38 +0200 Subject: [PATCH] path display --- src/lib/clickhouse/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/clickhouse/actions.ts b/src/lib/clickhouse/actions.ts index 19af73e..4d44249 100644 --- a/src/lib/clickhouse/actions.ts +++ b/src/lib/clickhouse/actions.ts @@ -140,7 +140,7 @@ export async function getMeshcoreNodeInfo(publicKey: string, limit: number = 50) is_room_server, has_location, hex(origin_pubkey) as origin_pubkey, - concat(hex(path), substring(hex(origin_pubkey), 1, 4)) as full_path + concat(path, substring(origin_pubkey, 1, 2)) as full_path FROM meshcore_adverts WHERE public_key = {publicKey:String} ORDER BY mesh_timestamp DESC