diff --git a/CMakeLists.txt b/CMakeLists.txt index 8859d4a..43da5db 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required (VERSION 3.7) project (expandurl-mastodon - VERSION 0.7.1 + VERSION 0.7.2 LANGUAGES CXX ) diff --git a/src/masto.cpp b/src/masto.cpp index a419244..51f5e63 100644 --- a/src/masto.cpp +++ b/src/masto.cpp @@ -128,8 +128,8 @@ const void Listener::start() if (ret != 0 && ret != 14) // 14 means canceled by user { syslog(LOG_ERR, "Connection terminated: Error %u", ret); - syslog(LOG_INFO, "Waiting for 30 seconds"); - std::this_thread::sleep_for(std::chrono::seconds(30)); + syslog(LOG_INFO, "Waiting for 60 seconds"); + std::this_thread::sleep_for(std::chrono::seconds(60)); } _running = false; });