Update src/parser.nim

Co-authored-by: Zed <zedeus@pm.me>
This commit is contained in:
HookedBehemoth 2023-03-01 16:13:36 +01:00 committed by GitHub
parent 3a5faded86
commit 368974c803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -385,9 +385,8 @@ proc parseGraphTweet(js: JsonNode): Tweet =
result = parseTweet(js{"legacy"}, jsCard)
result.user = parseUser(js{"core", "user_results", "result", "legacy"})
var note_tweet = js{"note_tweet", "note_tweet_results", "result"}
if note_tweet.kind != JNull:
result.expandNoteTweetEntities(note_tweet)
with noteTweet, js{"note_tweet", "note_tweet_results", "result"}:
result.expandNoteTweetEntities(noteTweet)
if result.quote.isSome:
result.quote = some(parseGraphTweet(js{"quoted_status_result", "result"}))