mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
We no longer know whether profiles are suspended
This commit is contained in:
parent
bc0ccb483a
commit
51c7af082d
3 changed files with 6 additions and 10 deletions
|
|
@ -25,13 +25,8 @@ 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: return
|
||||
with error, js{"errors"}:
|
||||
result = Profile(username: username)
|
||||
if error.getError == suspended:
|
||||
result.suspended = true
|
||||
return
|
||||
|
||||
if js.isNull or js.kind == JArray and js.len == 0 or "error" in js:
|
||||
return Profile(username: username)
|
||||
result = parseProfile(js[0])
|
||||
|
||||
proc parseGraphProfile*(js: JsonNode; username: string): Profile =
|
||||
|
|
|
|||
Loading…
Reference in a new issue