don't add twice the same account. Fixes #1752
This commit is contained in:
parent
bdda6d1555
commit
c0534e9515
|
@ -2540,6 +2540,18 @@ class AccountCreationWizardWindow:
|
|||
dialogs.ErrorDialog(pritext, str(s)).get_response()
|
||||
return
|
||||
|
||||
already_in_jids = []
|
||||
for account in gajim.connections:
|
||||
j = gajim.config.get_per('accounts', account, 'name')
|
||||
j += '@' + gajim.config.get_per('accounts', account, 'hostname')
|
||||
already_in_jids.append(j)
|
||||
|
||||
if jid in already_in_jids:
|
||||
pritext = _('Duplicate Jabber ID')
|
||||
sectext = _('This account is already configured in Gajim.')
|
||||
dialogs.ErrorDialog(pritext, sectext).get_response()
|
||||
return
|
||||
|
||||
self.account = server
|
||||
i = 1
|
||||
while self.account in gajim.connections:
|
||||
|
|
Loading…
Reference in New Issue