From 7610e8c39854c291e08732579a01e684e52fa7b8 Mon Sep 17 00:00:00 2001 From: Mustafa Enes Batur Date: Thu, 5 Jun 2025 14:14:55 +0200 Subject: [PATCH] Bugfix --- hscontrol/noise.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscontrol/noise.go b/hscontrol/noise.go index 9c29af95..9931a9cd 100644 --- a/hscontrol/noise.go +++ b/hscontrol/noise.go @@ -220,7 +220,7 @@ func (ns *noiseServer) NoisePollNetMapHandler( return } - if ns.nodeKey != mapRequest.NodeKey { + if node.NodeKey != mapRequest.NodeKey { httpError(writer, NewHTTPError(http.StatusNotFound, "node does not belong to machine key", nil)) return }