correcly use the received password when we're invited to a password protected room
This commit is contained in:
parent
bc880bd892
commit
e1b1e5f694
1 changed files with 4 additions and 2 deletions
|
@ -4652,9 +4652,11 @@ class InvitationReceivedDialog:
|
|||
try:
|
||||
if self.is_continued:
|
||||
gajim.interface.join_gc_room(self.account, self.room_jid,
|
||||
gajim.nicks[self.account], None, is_continued=True)
|
||||
gajim.nicks[self.account], self.password,
|
||||
is_continued=True)
|
||||
else:
|
||||
JoinGroupchatWindow(self.account, self.room_jid)
|
||||
JoinGroupchatWindow(self.account, self.room_jid,
|
||||
password=self.password)
|
||||
except GajimGeneralException:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue