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) {