From 043d1c09c27aad0326eed87c84385d5f2e194640 Mon Sep 17 00:00:00 2001 From: Martchus Date: Tue, 1 May 2018 22:31:00 +0200 Subject: [PATCH] Set default re-connect interval to 30 seconds See https://github.com/Martchus/syncthingtray/issues/16#issuecomment-383375598 --- connector/syncthingconnectionsettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector/syncthingconnectionsettings.h b/connector/syncthingconnectionsettings.h index ab2f9d04..4b6988d6 100644 --- a/connector/syncthingconnectionsettings.h +++ b/connector/syncthingconnectionsettings.h @@ -19,7 +19,7 @@ struct LIB_SYNCTHING_CONNECTOR_EXPORT SyncthingConnectionSettings { int trafficPollInterval = 2000; int devStatsPollInterval = 60000; int errorsPollInterval = 30000; - int reconnectInterval = 0; + int reconnectInterval = 30000; QString httpsCertPath; QList expectedSslErrors; bool loadHttpsCert();