Google Search fixed

- All searches url now uses shorturl to fix the issue with links having
more than 250+ characters
- Title, Texts and terms trimmed to fit in embeds
This commit is contained in:
samvaio 2016-12-28 21:46:36 +05:30
parent a7fc482ff7
commit 0ef9e356e5

View File

@ -266,7 +266,7 @@ namespace NadekoBot.Modules.Searches
var embed = new EmbedBuilder() var embed = new EmbedBuilder()
.WithOkColor() .WithOkColor()
.WithAuthor(eab => eab.WithName("Search For: " + terms) .WithAuthor(eab => eab.WithName("Search For: " + terms.TrimTo(50))
.WithUrl(fullQueryLink) .WithUrl(fullQueryLink)
.WithIconUrl("http://i.imgur.com/G46fm8J.png")) .WithIconUrl("http://i.imgur.com/G46fm8J.png"))
.WithTitle(umsg.Author.Mention) .WithTitle(umsg.Author.Mention)
@ -274,7 +274,8 @@ namespace NadekoBot.Modules.Searches
string desc = ""; string desc = "";
foreach (GoogleSearchResult res in results) foreach (GoogleSearchResult res in results)
{ {
desc += $"[{Format.Bold(res.Title)}]({res.Link})\n{res.Text}\n\n"; var shortlinks = await NadekoBot.Google.ShortenUrl(res.Link).ConfigureAwait(false);
desc += $"[{Format.Bold(res.Title.TrimTo(70))}]({shortlinks})\n{res.Text.TrimTo(150)}\n\n";
} }
await channel.EmbedAsync(embed.WithDescription(desc).Build()).ConfigureAwait(false); await channel.EmbedAsync(embed.WithDescription(desc).Build()).ConfigureAwait(false);
} }