siwwy :3 #3

Closed
RoscoeDaWah wants to merge 261 commits from feat-privacy into master
Showing only changes of commit 50a8b45625 - Show all commits

ACTUALLY make the cooldown 60 minutes

Frankie B 2023-07-20 03:24:35 +01:00
No known key found for this signature in database

View file

@ -25,7 +25,7 @@ public function handle(Request $request, Closure $next): Response
}
// 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);
}