fix RT not being detected in some cases
This commit is contained in:
parent
1d8e622ab5
commit
cee46df117
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ namespace BirdsiteLive.Twitter.Extractors
|
|||
var message = tweet.FullText;
|
||||
var tweetUrls = tweet.Media.Select(x => x.URL).Distinct();
|
||||
|
||||
if (tweet.IsRetweet && tweet.QuotedStatusId == null && message.StartsWith("RT") && tweet.RetweetedTweet != null)
|
||||
if (tweet.IsRetweet && message.StartsWith("RT") && tweet.RetweetedTweet != null)
|
||||
{
|
||||
message = tweet.RetweetedTweet.FullText;
|
||||
tweetUrls = tweet.RetweetedTweet.Media.Select(x => x.URL).Distinct();
|
||||
|
|
Reference in a new issue