Only connect if first run is complete

This commit is contained in:
JonnyWong16 2018-02-14 08:53:49 -08:00
commit c2713c53dd
3 changed files with 7 additions and 7 deletions

View file

@ -461,7 +461,8 @@ def start():
notification_handler.start_threads(num_threads=CONFIG.NOTIFICATION_THREADS)
notifiers.check_browser_enabled()
activity_pinger.connect_server(log=True, startup=True)
if CONFIG.FIRST_RUN_COMPLETE:
activity_pinger.connect_server(log=True, startup=True)
_STARTED = True