mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Add yet another status error code
This commit is contained in:
parent
56420a28bd
commit
ad9083149c
2 changed files with 2 additions and 1 deletions
|
|
@ -301,7 +301,7 @@ proc parseGlobalObjects(js: JsonNode): GlobalObjects =
|
|||
|
||||
proc parseStatus*(js: JsonNode): Tweet =
|
||||
with e, js{"errors"}:
|
||||
if e.getError in {tweetNotFound, tweetUnavailable, tweetCensored, doesntExist}:
|
||||
if e.getError in {tweetNotFound, tweetUnavailable, tweetCensored, doesntExist, tweetNotAuthorized}:
|
||||
return
|
||||
|
||||
result = parseTweet(js, js{"card"})
|
||||
|
|
|
|||
Loading…
Reference in a new issue