From 891330825ae4db6d0e02f6b28f42fb7c1a485e99 Mon Sep 17 00:00:00 2001 From: lukas Date: Wed, 5 May 2021 16:36:38 +0200 Subject: [PATCH] set interval to correct integer --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 8e55acd..1bcd13b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,7 +28,7 @@ int main(int argc, char *argv[]) { } } else if (firstarg == "-l" || firstarg == "--loop") { - IPRefresher::startUpService(true); + IPRefresher::startUpService(600); } else if (firstarg == "-c" || firstarg == "--checkconfig") { if (Config::validateConfig()) { Logger::message("Config file is OK");