Fix _on_send_info
This commit is contained in:
parent
da1b4c68df
commit
c5a7abe5d2
|
@ -813,7 +813,7 @@ class Core(
|
||||||
self.settings.dont_count_slow_torrents = value
|
self.settings.dont_count_slow_torrents = value
|
||||||
self.session.set_settings(self.settings)
|
self.session.set_settings(self.settings)
|
||||||
|
|
||||||
def _on_send_info(self):
|
def _on_send_info(self, key, value):
|
||||||
log.debug("Sending anonymous stats..")
|
log.debug("Sending anonymous stats..")
|
||||||
"""sends anonymous stats home"""
|
"""sends anonymous stats home"""
|
||||||
class Send_Info_Thread(threading.Thread):
|
class Send_Info_Thread(threading.Thread):
|
||||||
|
@ -839,4 +839,5 @@ class Core(
|
||||||
log.debug("Network error while trying to send info: %s", e)
|
log.debug("Network error while trying to send info: %s", e)
|
||||||
else:
|
else:
|
||||||
self.config["info_sent"] = now
|
self.config["info_sent"] = now
|
||||||
|
if value:
|
||||||
Send_Info_Thread(self.config).start()
|
Send_Info_Thread(self.config).start()
|
||||||
|
|
Loading…
Reference in New Issue