mirror of https://github.com/searxng/searxng.git
fix: return body on limiter block so there is not just a blank page
This commit is contained in:
parent
7fec286f31
commit
38385e48cf
|
@ -85,7 +85,7 @@ def is_accepted_request() -> bool:
|
||||||
|
|
||||||
def pre_request():
|
def pre_request():
|
||||||
if not is_accepted_request():
|
if not is_accepted_request():
|
||||||
return '', 429
|
return 'Too Many Requests', 429
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue