From cbc901496c94da548aecf53e363e41e2f5c3d955 Mon Sep 17 00:00:00 2001 From: jdl Date: Sat, 13 Jun 2026 08:35:05 +0200 Subject: [PATCH] Cleanjp --- peer/device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peer/device.go b/peer/device.go index a0fb95c..9be7061 100644 --- a/peer/device.go +++ b/peer/device.go @@ -53,7 +53,7 @@ func (a *App) devAddDirect(p *Peer, endpoint netip.AddrPort) { func (a *App) devSetRelay(p *Peer, endpoint netip.AddrPort) { log.Printf("RELAY: %s - %s @ %s", p.Name, p.VPNIP.String(), endpoint.String()) devRetry(p.VPNIP, "SetRelay", func() error { return a.dev.SetRelay(p.PubKey(), endpoint, a.vpnNet) }) - p.State = StateDirect // Dirrect connection. The app marks peer as relay. + p.State = StateDirect // Direct connection. The app marks peer as relay. } func (a *App) devPromote(p *Peer) {