From 8261a161abd30ab70918df87dcebd10175cae48f Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 3 Oct 2021 23:05:49 +0200 Subject: [PATCH] Set default re-connect interval back to 30 seconds See https://github.com/Martchus/syncthingtray/issues/16#issuecomment-932986686 --- connector/syncthingconnectionsettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connector/syncthingconnectionsettings.h b/connector/syncthingconnectionsettings.h index f90e44c1..910ef0fe 100644 --- a/connector/syncthingconnectionsettings.h +++ b/connector/syncthingconnectionsettings.h @@ -47,7 +47,7 @@ struct LIB_SYNCTHING_CONNECTOR_EXPORT SyncthingConnectionSettings { static constexpr int defaultTrafficPollInterval = 5000; static constexpr int defaultDevStatusPollInterval = 60000; static constexpr int defaultErrorsPollInterval = 30000; - static constexpr int defaultReconnectInterval = 0; + static constexpr int defaultReconnectInterval = 30000; }; } // namespace Data