fix typo 2
This commit is contained in:
parent
c0882577da
commit
5f5c0ba6a8
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
{
|
||||
|
|
Reference in a new issue