mirror of
https://github.com/zedeus/nitter
synced 2026-09-06 07:09:31 +00:00
Limit search length
This commit is contained in:
parent
5510330f70
commit
f707826241
3 changed files with 5 additions and 2 deletions
|
|
@ -14,6 +14,9 @@ proc createSearchRouter*(cfg: Config) =
|
|||
if @"text".len == 0 or "." in @"text":
|
||||
resp Http404, showError("Please enter a valid username.", cfg.title)
|
||||
|
||||
if @"text".len > 200:
|
||||
resp Http400, showError("Search input too long.", cfg.title)
|
||||
|
||||
if "," in @"text":
|
||||
redirect("/" & @"text")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue