mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Nevermind.
This commit is contained in:
parent
51c7af082d
commit
91f42c4c94
3 changed files with 13 additions and 6 deletions
|
|
@ -24,10 +24,17 @@ proc parseProfile(js: JsonNode; id=""): Profile =
|
|||
|
||||
result.expandProfileEntities(js)
|
||||
|
||||
proc parseUserLookup*(js: JsonNode; username: string): Profile =
|
||||
if js.isNull or js.kind == JArray and js.len == 0 or "error" in js:
|
||||
proc parseUserShow*(js: JsonNode; username: string): Profile =
|
||||
if js.isNull:
|
||||
return Profile(username: username)
|
||||
result = parseProfile(js[0])
|
||||
|
||||
with error, js{"errors"}:
|
||||
result = Profile(username: username)
|
||||
if error.getError == suspended:
|
||||
result.suspended = true
|
||||
return
|
||||
|
||||
result = parseProfile(js)
|
||||
|
||||
proc parseGraphProfile*(js: JsonNode; username: string): Profile =
|
||||
if js.isNull: return
|
||||
|
|
|
|||
Loading…
Reference in a new issue