From f181f587358d9183df1fe67f25e24a0bddf9edb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20G?= Date: Mon, 24 Aug 2020 11:56:46 -0400 Subject: [PATCH] Remove dead images for search embeds --- cogs/search.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/cogs/search.py b/cogs/search.py index b9d6e36..95f8dce 100755 --- a/cogs/search.py +++ b/cogs/search.py @@ -42,9 +42,7 @@ class Search(commands.Cog): "org/" + args, url='http://doc.ubuntu-fr.org/') embed.set_author(name="DocUbuntu-Fr", - url='http://doc.ubuntu-fr.org/', - icon_url='https://tuxbot.outout.xyz/data/ubuntu.png') - embed.set_thumbnail(url='https://tuxbot.outout.xyz/data/ubuntu.png') + url='http://doc.ubuntu-fr.org/') embed.set_footer(text="Merci à ceux qui ont pris le temps d'écrire " "cette documentation") await ctx.send(embed=embed) @@ -66,10 +64,7 @@ class Search(commands.Cog): ":wink: : https://wiki.archlinux." "org/index.php/" + args, url='https://wiki.archlinux.org/index.php/') - embed.set_author(name="Doc ArchLinux", - url='https://wiki.archlinux.org/index.php/', - icon_url='https://tuxbot.outout.xyz/data/arch.png') - embed.set_thumbnail(url='https://tuxbot.outout.xyz/data/arch.png') + embed.set_author(name="Doc ArchLinux") embed.set_footer(text="Merci à ceux qui ont pris le temps d'écrire " "cette documentation") await ctx.send(embed=embed)