From 383665673727bf5fc7e461a54755501147a78bcc Mon Sep 17 00:00:00 2001 From: Alex Mauer Date: Wed, 14 Sep 2005 00:02:32 +0000 Subject: [PATCH] whoops. ACTUALLY pass true to auto when going auto-away. --- src/gajim.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index c5905d2df..524792a62 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -839,9 +839,9 @@ class Interface: continue if state == common.sleepy.STATE_AWAKE and \ gajim.sleeper_state[account] in ('autoaway', 'autoxa'): - #we go online [we pass True to auto param] + #we go online self.roster.send_status(account, 'online', - gajim.status_before_autoaway[account], True) + gajim.status_before_autoaway[account]) gajim.sleeper_state[account] = 'online' elif state == common.sleepy.STATE_AWAY and \ gajim.sleeper_state[account] == 'online' and \ @@ -851,7 +851,7 @@ class Interface: gajim.connections[account].status #we go away (no auto status) [we pass True to auto param] self.roster.send_status(account, 'away', - gajim.config.get('autoaway_message'), True) + gajim.config.get('autoaway_message'), auto=True) gajim.sleeper_state[account] = 'autoaway' elif state == common.sleepy.STATE_XA and (\ gajim.sleeper_state[account] == 'autoaway' or \ @@ -859,7 +859,7 @@ class Interface: gajim.config.get('autoxa'): #we go extended away [we pass True to auto param] self.roster.send_status(account, 'xa', - gajim.config.get('autoxa_message'), True) + gajim.config.get('autoxa_message'), auto=True) gajim.sleeper_state[account] = 'autoxa' return True # renew timeout (loop for ever)