[jim] fix logic bug
This commit is contained in:
parent
d1bb5cbc74
commit
0190ac90a4
|
@ -720,12 +720,11 @@ def sanitize_filename(filename):
|
||||||
|
|
||||||
def allow_showing_notification(account):
|
def allow_showing_notification(account):
|
||||||
'''is it allowed to show nofication?'''
|
'''is it allowed to show nofication?'''
|
||||||
if gajim.config.get('notify_on_new_message'):
|
# check OUR status and if we allow notifications for that status
|
||||||
# check OUR status and if we allow notifications for that status
|
if gajim.config.get('autopopupaway'): # always show notification
|
||||||
if gajim.config.get('autopopupaway'): # always show notification
|
return True
|
||||||
return True
|
if gajim.connections[account].connected in (2, 3): # we're online or chat
|
||||||
if gajim.connections[account].connected in (2, 3): # we're online or chat
|
return True
|
||||||
return True
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def allow_popup_window(account):
|
def allow_popup_window(account):
|
||||||
|
|
Loading…
Reference in New Issue