This commit is contained in:
Vincent Cloutier 2022-05-08 18:08:19 -04:00
parent 23e17dd88c
commit c0882577da

View file

@ -22,7 +22,7 @@ namespace BirdsiteLive.Twitter.Extractors
JsonElement replyAccount;
string? replyAccountString = null;
JsonElement referenced_tweets;
if(tweet.TryGetProperty("referenced_tweets", out replyAccount))
if(tweet.TryGetProperty("in_reply_to_user_id", out replyAccount))
{
replyAccountString = replyAccount.GetString();