fix QuoteRT detection

This commit is contained in:
Nicolas Constant 2021-01-29 20:07:38 -05:00
parent a7e8f3a987
commit 739f7aaead
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 1 deletions

View File

@ -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)
};