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

delay popup notif back to 30 seconds

with high net load 15 secs is not enough. it is important not to give the idea to the user that those contacts that popup in 17 second just signed in cause that is simply not true. So it is better to lose one possible contact logging in the first 30 seconds after we logged in, that to show 3 or 4 contacts just logged in at once
parent 4ef68bb7
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ class Interface:
def handle_event_status(self, account, status): # OUR status
#('STATUS', account, status)
if status != 'offline':
gobject.timeout_add(15000, self.allow_notif, account)
gobject.timeout_add(30000, self.allow_notif, account)
self.roster.on_status_changed(account, status)
def handle_event_notify(self, account, array):
......
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