diff --git a/src/NadekoBot/Modules/Utility/Commands/CrossServerTextChannel.cs b/src/NadekoBot/Modules/Utility/Commands/CrossServerTextChannel.cs index decd705f..194ee455 100644 --- a/src/NadekoBot/Modules/Utility/Commands/CrossServerTextChannel.cs +++ b/src/NadekoBot/Modules/Utility/Commands/CrossServerTextChannel.cs @@ -50,7 +50,7 @@ namespace NadekoBot.Modules.Utility } private static string GetText(IGuild server, ITextChannel channel, IGuildUser user, IUserMessage message) => - $"**{server.Name} | {channel.Name}** `{user.Username}`: " + message.Content; + $"**{server.Name} | {channel.Name}** `{user.Username}`: " + message.Content.SanitizeMentions(); public static readonly ConcurrentDictionary> Subscribers = new ConcurrentDictionary>(); private static Logger _log { get; }