fix typo 3

This commit is contained in:
Vincent Cloutier 2022-05-08 18:11:33 -04:00
parent 5f5c0ba6a8
commit 03414613dd

View file

@ -42,7 +42,7 @@ namespace BirdsiteLive.Twitter.Extractors
if (first.GetProperty("type").GetString() == "quoted")
{
IsReply = true;
replyId = first.GetProperty("id").GetInt64();
replyId = Int64.Parse(first.GetProperty("id").GetString());
}
}