diff --git a/include/core/throttle.h b/include/core/throttle.h index 4b487117c0..c5c54e5da4 100644 --- a/include/core/throttle.h +++ b/include/core/throttle.h @@ -36,7 +36,7 @@ class THROTTLE public: explicit THROTTLE( std::chrono::milliseconds aInterval ) : m_interval( aInterval ), - m_last( std::chrono::steady_clock::time_point::min() ) + m_last( std::chrono::steady_clock::now() - aInterval ) { }