aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Http/Middleware/RateLimiter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/Middleware/RateLimiter.php b/app/Http/Middleware/RateLimiter.php
index 3ca9268..8c00b57 100644
--- a/app/Http/Middleware/RateLimiter.php
+++ b/app/Http/Middleware/RateLimiter.php
@@ -25,7 +25,7 @@ class RateLimiter
}
// Add the IP address to the cache and set the expiration time to one hour
- Cache::put($cacheKey, true, 60);
+ Cache::put($cacheKey, true, 3600);
return $next($request);
}