From f3060f5247b13325be5df87a18665bfc21ca7093 Mon Sep 17 00:00:00 2001 From: SaltySnail Date: Sat, 8 Jun 2024 20:24:46 +0200 Subject: [PATCH] change default from 3h to 30s --- include/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Common.h b/include/Common.h index 57462b5..fb89abf 100644 --- a/include/Common.h +++ b/include/Common.h @@ -83,7 +83,7 @@ public: std::string HTTPServerIP { "127.0.0.1" }; bool HTTPServerUseSSL { false }; bool HideUpdateMessages { false }; - std::string UpdateReminderTime { "3h" }; + std::string UpdateReminderTime { "30s" }; [[nodiscard]] bool HasCustomIP() const { return !CustomIP.empty(); } };