when we are disconnected while autoaway, don't loose previous status. fixes #2934

This commit is contained in:
Yann Leboulanger 2007-01-31 20:38:49 +00:00
parent 8f50d04ea8
commit b02cdd378d

View file

@ -152,6 +152,11 @@ class Connection(ConnectionHandlers):
if gajim.config.get_per('accounts', self.name, 'autoreconnect'): if gajim.config.get_per('accounts', self.name, 'autoreconnect'):
self.connected = -1 self.connected = -1
self.dispatch('STATUS', 'error') self.dispatch('STATUS', 'error')
if gajim.status_before_autoaway[self.name]:
# We were auto away. So go back online
self.status = gajim.status_before_autoaway[self.name]
gajim.status_before_autoaway[self.name] = ''
self.old_show = 'online'
# this check has moved from _reconnect method # this check has moved from _reconnect method
# do exponential backoff until 15 minutes, # do exponential backoff until 15 minutes,
# then small linear increase # then small linear increase