summaryrefslogtreecommitdiff
path: root/node.go
diff options
context:
space:
mode:
authorMarin Ivanov <[email protected]>2025-09-04 01:40:07 +0300
committerMarin Ivanov <[email protected]>2025-09-04 09:00:55 +0300
commit9897dc711a8e3e1be51a72d5f68f50692b289eeb (patch)
tree065a20d7b0ad972cacd914c85850b9fda61afb7e /node.go
parentf37dd8d9f636d312614d9459802aab0847548c3a (diff)
Fixes
bugfix: channel hash over MQTT bugfix: telemetry reply fix: typo
Diffstat (limited to 'node.go')
-rw-r--r--node.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.go b/node.go
index a2b8edb..0481396 100644
--- a/node.go
+++ b/node.go
@@ -591,7 +591,7 @@ func (n *Node) dispatchMessageToAdmin(msg *pb.FromRadio) error {
}
for conn := range n.adminConn {
if err := conn.Write(msg); err != nil {
- n.logger.Errorf("failed to send to admin: %w", err)
+ n.logger.Errorf("failed to send to admin: %s", err)
}
}
return nil