Correct some bugs with the name used to create a MUC from a 1-to-1 chat when the server can't send a unique key. See #2095.

This commit is contained in:
Julien Pivotto 2008-05-18 18:00:02 +00:00
parent e5fac7315e
commit 9e8e34403c
1 changed files with 1 additions and 1 deletions

View File

@ -3731,7 +3731,7 @@ class TransformChatToMUC:
def unique_room_id_error(self, server):
self.unique_room_id_supported(server,
gajim.nicks[self.account] + str(randrange(9999999)))
gajim.nicks[self.account].lower().replace(' ','') + str(randrange(9999999)))
class DataFormWindow(Dialog):
def __init__(self, form, on_response_ok):