fix QuoteRT detection
This commit is contained in:
parent
a7e8f3a987
commit
739f7aaead
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ namespace BirdsiteLive.Twitter.Extractors
|
|||
CreatedAt = tweet.CreatedAt.ToUniversalTime(),
|
||||
IsReply = tweet.InReplyToUserId != null,
|
||||
IsThread = tweet.InReplyToUserId != null && tweet.InReplyToUserId == tweet.CreatedBy.Id,
|
||||
IsRetweet = tweet.IsRetweet,
|
||||
IsRetweet = tweet.IsRetweet || tweet.QuotedStatusId != null,
|
||||
RetweetUrl = ExtractRetweetUrl(tweet)
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue