diff --git a/gajim/gtk/single_message.py b/gajim/gtk/single_message.py
index 0145c75e80624015b45a3f8b63ced55fa475ec27..8d499c0a2f35f3e5a4980526e390557e35200fc9 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)