ability to send messages to a group, even if it contains offline contacts. Fixes #6761

This commit is contained in:
Yann Leboulanger 2011-02-18 17:04:27 +01:00
parent 50257b6973
commit b1d1cd6702
1 changed files with 1 additions and 1 deletions

View File

@ -2859,7 +2859,7 @@ class SingleMessageWindow:
self.close_button = self.xml.get_object('close_button')
self.message_tv_buffer.connect('changed', self.update_char_counter)
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_sensitive(False)
else: