Only record offline internet if there was message received before
This commit is contained in:
parent
1cce926ef8
commit
16f7dafcdf
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ class ConnectionServer(object):
|
||||||
# Internet outage detection
|
# Internet outage detection
|
||||||
if time.time() - last_message_time > max(60, 60 * 10 / max(1, float(len(self.connections)) / 50)):
|
if time.time() - last_message_time > max(60, 60 * 10 / max(1, float(len(self.connections)) / 50)):
|
||||||
# Offline: Last message more than 60-600sec depending on connection number
|
# Offline: Last message more than 60-600sec depending on connection number
|
||||||
if self.has_internet:
|
if self.has_internet and last_message_time:
|
||||||
self.has_internet = False
|
self.has_internet = False
|
||||||
self.onInternetOffline()
|
self.onInternetOffline()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue