fix creation of new accounts

This commit is contained in:
Yann Leboulanger 2008-02-04 22:17:35 +00:00
parent 853d06bcaa
commit 594313ed94
1 changed files with 6 additions and 2 deletions

View File

@ -551,8 +551,12 @@ class Connection(ConnectionHandlers):
def connect_to_next_host(self, retry = False): def connect_to_next_host(self, retry = False):
if len(self._hosts): if len(self._hosts):
self._connection_types = gajim.config.get_per('accounts', self.name, # No config option exist when creating a new account
'connection_types').split() if self.name in gajim.config.get_per('accounts'):
self._connection_types = gajim.config.get_per('accounts', self.name,
'connection_types').split()
else:
self._connection_types = ['tls', 'ssl', 'plain']
host = self.select_next_host(self._hosts) host = self.select_next_host(self._hosts)
self._current_host = host self._current_host = host
self._hosts.remove(host) self._hosts.remove(host)