diff --git a/NadekoBot.Core/Modules/Searches/Services/SearchesService.cs b/NadekoBot.Core/Modules/Searches/Services/SearchesService.cs index f16c9fa6..d982b720 100644 --- a/NadekoBot.Core/Modules/Searches/Services/SearchesService.cs +++ b/NadekoBot.Core/Modules/Searches/Services/SearchesService.cs @@ -215,12 +215,6 @@ namespace NadekoBot.Modules.Searches.Services { var blacklistedTags = GetBlacklistedTags(guild.Value); - if (blacklistedTags - .Any(x => tag.ToLowerInvariant().Contains(x))) - { - throw new TagBlacklistedException(); - } - var cacher = _imageCacher.GetOrAdd(guild.Value, (key) => new SearchImageCacher()); return cacher.GetImage(tag, isExplicit, type, blacklistedTags);