From 9f0154ef84f442895af9947fa9526b31cd27cdf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Wed, 15 Nov 2017 22:28:57 +0100 Subject: [PATCH] Add caps to first presence According to the XEP, caps hash has to be added to all presences --- gajim/common/connection_handlers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gajim/common/connection_handlers.py b/gajim/common/connection_handlers.py index a33e1dc67..912c678d9 100644 --- a/gajim/common/connection_handlers.py +++ b/gajim/common/connection_handlers.py @@ -2039,6 +2039,7 @@ ConnectionHandlersBase, ConnectionJingle, ConnectionIBBytestream): p.setStatus(msg) if signed: p.setTag(nbxmpp.NS_SIGNED + ' x').setData(signed) + p = self.add_sha(p) if self.connection: self.connection.send(p)