fix traceback when unblocking a group. fixes #4074
This commit is contained in:
parent
46913c541b
commit
26785a25f1
|
@ -2475,7 +2475,7 @@ class RosterWindow:
|
||||||
show = gajim.SHOW_LIST[gajim.connections[account].connected]
|
show = gajim.SHOW_LIST[gajim.connections[account].connected]
|
||||||
else: # accounts merged
|
else: # accounts merged
|
||||||
show = helpers.get_global_show()
|
show = helpers.get_global_show()
|
||||||
if gajim.SHOW_LIST[show] == 'invisible':
|
if show == 'invisible':
|
||||||
# Don't send our presence if we're invisible
|
# Don't send our presence if we're invisible
|
||||||
continue
|
continue
|
||||||
if account not in accounts:
|
if account not in accounts:
|
||||||
|
|
Loading…
Reference in New Issue