From 425f50f827cb0cbef1676371e028badb5f1051a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Br=C3=B6tzmann?= <mailtrash@posteo.de> Date: Mon, 18 Nov 2019 21:35:50 +0100 Subject: [PATCH] Always use bare JID when sending message to group --- gajim/gtk/single_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/gtk/single_message.py b/gajim/gtk/single_message.py index 0145c75e80..8d499c0a2f 100644 --- a/gajim/gtk/single_message.py +++ b/gajim/gtk/single_message.py @@ -74,7 +74,7 @@ def __init__(self, account, to='', action='', from_whom='', subject='', self.message_tv_buffer.connect('changed', self.update_char_counter) if isinstance(to, list): - jid = ', '.join([i[0].get_full_jid() for i in to]) + jid = ', '.join([i[0].jid for i in to]) self._ui.to_entry.set_text(jid) else: self._ui.to_entry.set_text(to) -- GitLab