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(),
|
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)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue