diff --git a/system/src/RateLimit.php b/system/src/RateLimit.php index 40fe4c90d..fbb973692 100644 --- a/system/src/RateLimit.php +++ b/system/src/RateLimit.php @@ -37,7 +37,7 @@ public function exceeded(string $ip): bool { return false; } - return $this->attempts($ip) > $this->max_attempts; + return $this->attempts($ip) >= $this->max_attempts; } public function increment(string $ip): bool