diff --git a/src/parser.nim b/src/parser.nim index 977d579..daf7aea 100644 --- a/src/parser.nim +++ b/src/parser.nim @@ -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"})