Skip to content

Commit

Permalink
Fix invalid user search errors again
Browse files Browse the repository at this point in the history
  • Loading branch information
zedeus committed Apr 21, 2023
1 parent 376b444 commit 2f3ee72
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
8 changes: 5 additions & 3 deletions src/experimental/parser/user.nim
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ proc parseUser*(json: string; username=""): User =
proc parseUsers*(json: string; after=""): Result[User] =
result = Result[User](beginning: after.len == 0)

let raw = json.fromJson(seq[RawUser])
for user in raw:
result.content.add user.toUser
# starting with '{' means it's an error
if json[0] == '[':
let raw = json.fromJson(seq[RawUser])
for user in raw:
result.content.add user.toUser
6 changes: 5 additions & 1 deletion src/routes/search.nim
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ proc createSearchRouter*(cfg: Config) =
of users:
if "," in q:
redirect("/" & q)
let users = await getUserSearch(query, getCursor())
var users: Result[User]
try:
users = await getUserSearch(query, getCursor())
except InternalError:
users = Result[User](beginning: true, query: query)
resp renderMain(renderUserSearch(users, prefs), request, cfg, prefs, title)
of tweets:
let
Expand Down
3 changes: 2 additions & 1 deletion src/types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ type
null = 0
noUserMatches = 17
protectedUser = 22
paramsMissing = 25
missingParams = 25
couldntAuth = 32
doesntExist = 34
invalidParam = 47
userNotFound = 50
suspended = 63
rateLimited = 88
Expand Down

0 comments on commit 2f3ee72

Please sign in to comment.