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:
parent
e5fac7315e
commit
9e8e34403c
|
@ -3731,7 +3731,7 @@ class TransformChatToMUC:
|
||||||
|
|
||||||
def unique_room_id_error(self, server):
|
def unique_room_id_error(self, server):
|
||||||
self.unique_room_id_supported(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):
|
class DataFormWindow(Dialog):
|
||||||
def __init__(self, form, on_response_ok):
|
def __init__(self, form, on_response_ok):
|
||||||
|
|
Loading…
Reference in New Issue