From 7be389289c09243c519be5d1b3271beac3b72227 Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Wed, 16 Jul 2025 20:56:11 +0200 Subject: [PATCH] Fix import --- relay/client/conn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/relay/client/conn.go b/relay/client/conn.go index d8cffa695..8ac4e3bb2 100644 --- a/relay/client/conn.go +++ b/relay/client/conn.go @@ -12,7 +12,7 @@ type Conn struct { client *Client dstID messages.PeerID messageChan chan Msg - instanceURL *RelayAddr + instanceURL *messages.RelayAddr } // NewConn creates a new connection to a relayed remote peer. @@ -20,7 +20,7 @@ type Conn struct { // dstID: the destination peer ID // messageChan: the channel where the messages will be received // instanceURL: the relay instance URL, it used to get the proper server instance address for the remote peer -func NewConn(client *Client, dstID messages.PeerID, messageChan chan Msg, instanceURL *RelayAddr) *Conn { +func NewConn(client *Client, dstID messages.PeerID, messageChan chan Msg, instanceURL *messages.RelayAddr) *Conn { c := &Conn{ client: client, dstID: dstID,