added mention on RTs

This commit is contained in:
Nicolas Constant 2020-08-01 14:04:08 -04:00
parent d33cbbfb1c
commit 7a6d854aef
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 1 additions and 1 deletions

View File

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