added mention on RTs
This commit is contained in:
parent
d33cbbfb1c
commit
7a6d854aef
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ namespace BirdsiteLive.Twitter.Extractors
|
|||
if (tweet.IsRetweet)
|
||||
{
|
||||
if (tweet.RetweetedTweet != null)
|
||||
message = $"[RT {tweet.RetweetedTweet.CreatedBy.ScreenName}] {tweet.RetweetedTweet.FullText}";
|
||||
message = $"[RT @{tweet.RetweetedTweet.CreatedBy.ScreenName}] {tweet.RetweetedTweet.FullText}";
|
||||
else
|
||||
message = message.Replace("RT", "[RT]");
|
||||
}
|
||||
|
|
Reference in a new issue