fix typo 2

This commit is contained in:
Vincent Cloutier 2022-05-08 18:10:21 -04:00
parent c0882577da
commit 5f5c0ba6a8

View file

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