only send diagnostics if online
This commit is contained in:
parent
e86b9a210a
commit
5ce8fa99de
1 changed files with 2 additions and 1 deletions
|
@ -32,7 +32,8 @@ class Downloads(Thread):
|
||||||
update.download()
|
update.download()
|
||||||
state.user().export_library()
|
state.user().export_library()
|
||||||
if settings.preferences.get('sendDiagnostics') and \
|
if settings.preferences.get('sendDiagnostics') and \
|
||||||
now > settings.server.get('last_send_diagnostics', 0) + 60*60:
|
now > settings.server.get('last_send_diagnostics', 0) + 60*60 and \
|
||||||
|
state.online:
|
||||||
utils.send_debug()
|
utils.send_debug()
|
||||||
settings.server['last_send_diagnostics'] = now
|
settings.server['last_send_diagnostics'] = now
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue