From 0ffd7b6907214d50d1d359215aa0240fed030c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Apitzsch?= Date: Mon, 18 Dec 2017 22:16:22 +0100 Subject: [PATCH] Zeroconf: Fix get_own_jid() --- gajim/common/zeroconf/connection_zeroconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/common/zeroconf/connection_zeroconf.py b/gajim/common/zeroconf/connection_zeroconf.py index b08a4cf13..f3db7568b 100644 --- a/gajim/common/zeroconf/connection_zeroconf.py +++ b/gajim/common/zeroconf/connection_zeroconf.py @@ -125,7 +125,7 @@ class ConnectionZeroconf(CommonConnection, ConnectionHandlersZeroconf): return jid def get_own_jid(self): - return nbxmpp.JID(self.username + '@' + self.hostname) + return nbxmpp.JID(self.username + '@' + self.host) def reconnect(self): # Do not try to reco while we are already trying