Merge pull request #54 from rob5251/patch-1

Fixed mange error
This commit is contained in:
Master Kwoth 2016-02-24 04:51:38 +01:00
commit 6a726888ee

View File

@ -65,7 +65,7 @@ namespace NadekoBot.Modules {
var result = await SearchHelper.GetMangaQueryResultLink(e.GetArg("query")); var result = await SearchHelper.GetMangaQueryResultLink(e.GetArg("query"));
if (result == null) { if (result == null) {
await e.Channel.SendMessage("Failed to find that anime."); await e.Channel.SendMessage("Failed to find that manga.");
return; return;
} }
await e.Channel.SendMessage(result.ToString()); await e.Channel.SendMessage(result.ToString());