You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/include/watchers/timeout.h b/include/watchers/timeout.h
index 98b0576..a275cf9 100644
--- a/include/watchers/timeout.h
+++ b/include/watchers/timeout.h
@@ -182,7 +182,7 @@ public:
// in that case we won't reset the timer to not interfere with the event loop,
// but only update the expire time, when the timer then expires, the callback
// will not be called, but a new timer is going to be set instead
- if (_active && _loop->now() + timeout < _expire)
+ if (_active && _loop->now() + timeout >= _expire)
{
// set the new expire time
_expire = _loop->now() + timeout;
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: