Don't use embeds for !dog
This commit is contained in:
parent
ffab56d4a5
commit
2fb815bc97
1 changed files with 1 additions and 5 deletions
|
@ -23,11 +23,7 @@ namespace Geekbot.Bot.Commands.Randomness.Dog
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var response = await HttpAbstractions.Get<DogResponseDto>(new Uri("http://random.dog/woof.json"));
|
var response = await HttpAbstractions.Get<DogResponseDto>(new Uri("http://random.dog/woof.json"));
|
||||||
var eb = new EmbedBuilder
|
await ReplyAsync(response.Url);
|
||||||
{
|
|
||||||
ImageUrl = response.Url
|
|
||||||
};
|
|
||||||
await ReplyAsync("", false, eb.Build());
|
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue