From d10fdb090ac4adf2de6c74e88f71cea4f4ca3933 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 17 Oct 2016 10:18:49 +0200 Subject: [PATCH] fixed remind --- src/NadekoBot/Modules/Utility/Commands/Remind.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Utility/Commands/Remind.cs b/src/NadekoBot/Modules/Utility/Commands/Remind.cs index 1a65b535..f61aaeed 100644 --- a/src/NadekoBot/Modules/Utility/Commands/Remind.cs +++ b/src/NadekoBot/Modules/Utility/Commands/Remind.cs @@ -113,7 +113,7 @@ namespace NadekoBot.Modules.Utility } else { - ch = channel.Guild.GetTextChannels().FirstOrDefault(c => c.Name == meorchStr || c.Id.ToString() == meorchStr); + ch = channel.Guild.GetTextChannels().FirstOrDefault(c => c.Name.ToUpperInvariant() == meorchStr || c.Id.ToString() == meorchStr); } if (ch == null)