prevent bug when forming a jid

This commit is contained in:
Denis Fomin 2013-08-15 14:38:59 +04:00
parent d6b6c3fab7
commit e9f6909820
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class StanzaSession(object):
def get_to(self):
to = str(self.jid)
return gajim.get_jid_without_resource(to) + self.resource
return gajim.get_jid_without_resource(to) + '/' + self.resource
def remove_events(self, types):
"""