And another one

このコミットが含まれているのは:
Zed 2023-03-06 11:06:27 +01:00
コミット 7edc5646fe
1個のファイルの変更2行の追加1行の削除

ファイルの表示

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