diff --git a/plextraktsync/decorators/time_limit.py b/plextraktsync/decorators/time_limit.py index 80d9a035104..d1382556285 100644 --- a/plextraktsync/decorators/time_limit.py +++ b/plextraktsync/decorators/time_limit.py @@ -11,6 +11,7 @@ def time_limit(fn, *args, **kwargs): """ Throttles calls not to be called more often than TRAKT_POST_DELAY """ + timer.wait_if_needed() return fn(*args, **kwargs)