ability to send messages to a group, even if it contains offline contacts. Fixes #6761
This commit is contained in:
parent
50257b6973
commit
b1d1cd6702
|
@ -2859,7 +2859,7 @@ class SingleMessageWindow:
|
||||||
self.close_button = self.xml.get_object('close_button')
|
self.close_button = self.xml.get_object('close_button')
|
||||||
self.message_tv_buffer.connect('changed', self.update_char_counter)
|
self.message_tv_buffer.connect('changed', self.update_char_counter)
|
||||||
if isinstance(to, list):
|
if isinstance(to, list):
|
||||||
jid = ', '.join( [i[0].jid + '/' + i[0].resource for i in to])
|
jid = ', '.join( [i[0].get_full_jid() for i in to])
|
||||||
self.to_entry.set_text(jid)
|
self.to_entry.set_text(jid)
|
||||||
self.to_entry.set_sensitive(False)
|
self.to_entry.set_sensitive(False)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue