do not traceback if we have no systray capabilities
This commit is contained in:
parent
04659a94cf
commit
a743fd2669
|
@ -1166,14 +1166,18 @@ _('To change the account name, it must be disconnected.')).get_response()
|
||||||
gajim.encrypted_chats[name] = gajim.encrypted_chats[self.account]
|
gajim.encrypted_chats[name] = gajim.encrypted_chats[self.account]
|
||||||
gajim.last_message_time[name] = \
|
gajim.last_message_time[name] = \
|
||||||
gajim.last_message_time[self.account]
|
gajim.last_message_time[self.account]
|
||||||
|
|
||||||
#upgrade account variable in opened windows
|
#upgrade account variable in opened windows
|
||||||
for kind in ['infos', 'chats', 'gc', 'gc_config']:
|
for kind in ['infos', 'chats', 'gc', 'gc_config']:
|
||||||
for j in self.plugin.windows[name][kind]:
|
for j in self.plugin.windows[name][kind]:
|
||||||
self.plugin.windows[name][kind][j].account = name
|
self.plugin.windows[name][kind][j].account = name
|
||||||
|
|
||||||
#upgrade account in systray
|
#upgrade account in systray
|
||||||
for list in self.plugin.systray.jids:
|
if hasattr(self.plugin, 'systray'):
|
||||||
if list[0] == self.account:
|
for list in self.plugin.systray.jids:
|
||||||
list[0] = name
|
if list[0] == self.account:
|
||||||
|
list[0] = name
|
||||||
|
|
||||||
del self.plugin.windows[self.account]
|
del self.plugin.windows[self.account]
|
||||||
del self.plugin.queues[self.account]
|
del self.plugin.queues[self.account]
|
||||||
del self.plugin.nicks[self.account]
|
del self.plugin.nicks[self.account]
|
||||||
|
|
Loading…
Reference in New Issue