emoji added to osu profile link

This commit is contained in:
samvaio 2016-11-21 21:53:17 +05:30 committed by GitHub
parent 29adf7213a
commit 8569d6bd8e

View File

@ -48,7 +48,7 @@ namespace NadekoBot.Modules.Searches
MemoryStream ms = new MemoryStream(); MemoryStream ms = new MemoryStream();
res.CopyTo(ms); res.CopyTo(ms);
ms.Position = 0; ms.Position = 0;
await channel.SendFileAsync(ms, $"{usr}.png", $"`Profile Link:`https://osu.ppy.sh/u/{Uri.EscapeDataString(usr)}\n`Image provided by https://lemmmy.pw/osusig`").ConfigureAwait(false); await channel.SendFileAsync(ms, $"{usr}.png", $"🎧 **Profile Link:**https://osu.ppy.sh/u/{Uri.EscapeDataString(usr)}\n`Image provided by https://lemmmy.pw/osusig`").ConfigureAwait(false);
} }
catch (Exception ex) catch (Exception ex)
{ {
@ -273,4 +273,4 @@ namespace NadekoBot.Modules.Searches
(mods & (1 << pos)) != 0; (mods & (1 << pos)) != 0;
} }
} }
} }