From 1e1c4cb91fea8e9073f47a140bac635083b4ef99 Mon Sep 17 00:00:00 2001 From: you Date: Sat, 4 Apr 2026 08:01:35 +0000 Subject: [PATCH] fix: include resolved_path in groupByHash packet response QueryGroupedPackets builds its map manually and was missing resolved_path. The non-grouped path (txToMap) included it. --- cmd/server/store.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/server/store.go b/cmd/server/store.go index 5b9b4eb3..111f5bca 100644 --- a/cmd/server/store.go +++ b/cmd/server/store.go @@ -581,6 +581,9 @@ func (s *PacketStore) QueryGroupedPackets(q PacketQuery) *PacketResult { "rssi": floatPtrOrNil(tx.RSSI), }, }) + if tx.ResolvedPath != nil { + entries[len(entries)-1].latest["resolved_path"] = tx.ResolvedPath + } } s.mu.RUnlock()