diff --git a/src/common/zeroconf/connection_zeroconf.py b/src/common/zeroconf/connection_zeroconf.py index 41fc8be9b..e832378bc 100644 --- a/src/common/zeroconf/connection_zeroconf.py +++ b/src/common/zeroconf/connection_zeroconf.py @@ -495,6 +495,8 @@ class ConnectionZeroconf(ConnectionHandlersZeroconf): # send a stanza untouched if not self.connection: return + if not isinstance(stanza, common.xmpp.Node): + stanza = common.xmpp.Protocol(node=stanza) self.connection.send(stanza) def ack_subscribed(self, jid):