Fix wrong var name.
This commit is contained in:
parent
aa3230814c
commit
59374a1e39
|
@ -2420,10 +2420,10 @@ _('If "%s" accepts this request you will know his or her status.') % jid)
|
||||||
if not gajim.config.get_per('accounts', account,
|
if not gajim.config.get_per('accounts', account,
|
||||||
'sync_with_global_status'):
|
'sync_with_global_status'):
|
||||||
continue
|
continue
|
||||||
if not gajim.connections[acct].connected:
|
if not gajim.connections[account].connected:
|
||||||
continue
|
continue
|
||||||
current_show = gajim.SHOW_LIST[gajim.connections[acct].connected]
|
current_show = gajim.SHOW_LIST[gajim.connections[account].connected]
|
||||||
self.send_status(acct, current_show, status_message)
|
self.send_status(account, current_show, status_message)
|
||||||
|
|
||||||
|
|
||||||
def update_status_combobox(self):
|
def update_status_combobox(self):
|
||||||
|
|
Loading…
Reference in New Issue