diff --git a/src/timer_base.cpp b/src/timer_base.cpp index 814ff4c..5dbd7e0 100644 --- a/src/timer_base.cpp +++ b/src/timer_base.cpp @@ -60,7 +60,7 @@ namespace { auto now = std::chrono::system_clock::now(); auto next_time = db.next_access_time(op); duration diff = duration_cast(next_time.ts - now); - const auto retval = std::max(min_wait, std::min(3600.0 * 24.0, diff.count())); + const auto retval = std::max(min_wait, std::min(3600.0 * 24.0 * 10.0, diff.count())); return retval; } } //unnamed namespace