1
0
Fork 0
mirror of https://github.com/zedeus/nitter.git synced 2025-01-10 20:35:36 +00:00

Add another error code to parseStatus

This commit is contained in:
Zed 2023-03-06 00:22:27 +01:00
parent 725f601c9b
commit 56420a28bd

View file

@ -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}:
if e.getError in {tweetNotFound, tweetUnavailable, tweetCensored, doesntExist}:
return
result = parseTweet(js, js{"card"})