Skip to content
Snippets Groups Projects
Commit c28eaaa5 authored by nkour's avatar nkour
Browse files

do not sign auto statuses

parent 36a7ce1d
No related branches found
No related tags found
No related merge requests found
......@@ -815,9 +815,9 @@ class Interface:
continue
if state == common.sleepy.STATE_AWAKE and \
gajim.sleeper_state[account] in ('autoaway', 'autoxa'):
#we go online
#we go online [we pass True to auto param]
self.roster.send_status(account, 'online',
gajim.status_before_autoaway[account])
gajim.status_before_autoaway[account], True)
gajim.sleeper_state[account] = 'online'
elif state == common.sleepy.STATE_AWAY and \
gajim.sleeper_state[account] == 'online' and \
......@@ -825,17 +825,17 @@ class Interface:
#we save out online status
gajim.status_before_autoaway[account] = \
gajim.connections[account].status
#we go away (no auto status)
#we go away (no auto status) [we pass True to auto param]
self.roster.send_status(account, 'away',
gajim.config.get('autoaway_message'))
gajim.config.get('autoaway_message'), True)
gajim.sleeper_state[account] = 'autoaway'
elif state == common.sleepy.STATE_XAWAY and (\
gajim.sleeper_state[account] == 'autoaway' or \
gajim.sleeper_state[account] == 'online') and \
gajim.config.get('autoxa'):
#we go extended away
#we go extended away [we pass True to auto param]
self.roster.send_status(account, 'xa',
gajim.config.get('autoxa_message'))
gajim.config.get('autoxa_message'), True)
gajim.sleeper_state[account] = 'autoxa'
return True # renew timeout (loop for ever)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment