Add missing error codes for unavailable tweets

このコミットが含まれているのは:
Zed 2023-03-04 00:46:44 +01:00
コミット 725f601c9b
2個のファイルの変更3行の追加1行の削除

ファイルの表示

@ -301,7 +301,7 @@ proc parseGlobalObjects(js: JsonNode): GlobalObjects =
proc parseStatus*(js: JsonNode): Tweet =
with e, js{"errors"}:
if e.getError == tweetNotFound:
if e.getError in {tweetNotFound, tweetUnavailable, tweetCensored}:
return
result = parseTweet(js, js{"card"})

ファイルの表示

@ -47,6 +47,8 @@ type
forbidden = 200
badToken = 239
noCsrf = 353
tweetUnavailable = 421
tweetCensored = 422
User* = object
id*: string