diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-16 15:30:11 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-07-16 15:32:06 +0100 |
commit | a40febdef922e0afb4d2c0134d3af056cdbf148c (patch) | |
tree | 22a1091b2b5ca088a1d1d6e5ecaa0169365555aa /app/Http/Middleware | |
parent | 22b74d1764e724a2bfcab00200f4299e38ca0390 (diff) |
Update error message files, increment version
Diffstat (limited to 'app/Http/Middleware')
-rw-r--r-- | app/Http/Middleware/RateLimiter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/Middleware/RateLimiter.php b/app/Http/Middleware/RateLimiter.php index c81da43..3ca9268 100644 --- a/app/Http/Middleware/RateLimiter.php +++ b/app/Http/Middleware/RateLimiter.php @@ -21,7 +21,7 @@ class RateLimiter if (Cache::has($cacheKey)) { // If the cache key exists, the IP has submitted an entry within the last hour - return response()->view('errors.ratelimit-guestbook', [], 429); + return response()->view('errors.guestbook-ratelimit', [], 429); } // Add the IP address to the cache and set the expiration time to one hour |