From c4ca121c02d2d96ea2d254cec2afc8268d721d37 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 27 Jan 2017 22:02:43 +0100 Subject: [PATCH] here and everyone no longer work in cross server text channel --- .../Modules/Utility/Commands/CrossServerTextChannel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }