From 9c6a8df65848c621dba17556cc70763755e91959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 30 Jun 2018 20:02:16 +0200 Subject: [PATCH] Fix updating room avatar correctly --- gajim/common/modules/vcard_avatars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/common/modules/vcard_avatars.py b/gajim/common/modules/vcard_avatars.py index bff1f63b3..9aeb55049 100644 --- a/gajim/common/modules/vcard_avatars.py +++ b/gajim/common/modules/vcard_avatars.py @@ -62,7 +62,7 @@ class VCardAvatars: # Check if presence is from a MUC service contact = app.contacts.get_groupchat_contact(self._account, str(jid)) if contact is not None: - self._update_received(jid, avatar_sha) + self._update_received(jid, avatar_sha, room=True) elif stanza.getTag('x', namespace=nbxmpp.NS_MUC_USER): show = stanza.getShow() type_ = stanza.getType()