mirror of
https://github.com/NicolasConstant/BirdsiteLive
synced 2025-06-05 21:49:16 +02:00
fix QuoteRT detection
This commit is contained in:
@@ -27,7 +27,7 @@ namespace BirdsiteLive.Twitter.Extractors
|
|||||||
CreatedAt = tweet.CreatedAt.ToUniversalTime(),
|
CreatedAt = tweet.CreatedAt.ToUniversalTime(),
|
||||||
IsReply = tweet.InReplyToUserId != null,
|
IsReply = tweet.InReplyToUserId != null,
|
||||||
IsThread = tweet.InReplyToUserId != null && tweet.InReplyToUserId == tweet.CreatedBy.Id,
|
IsThread = tweet.InReplyToUserId != null && tweet.InReplyToUserId == tweet.CreatedBy.Id,
|
||||||
IsRetweet = tweet.IsRetweet,
|
IsRetweet = tweet.IsRetweet || tweet.QuotedStatusId != null,
|
||||||
RetweetUrl = ExtractRetweetUrl(tweet)
|
RetweetUrl = ExtractRetweetUrl(tweet)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user