From 8c612a96c8414af63b868290849b33dc2250b77c Mon Sep 17 00:00:00 2001 From: Dav <57032623+Dav-Git@users.noreply.github.com> Date: Wed, 25 Mar 2020 10:22:33 +0000 Subject: [PATCH] [Streams] Make preview picture for stream alerts bigger (#3689) --- redbot/cogs/streams/streamtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/cogs/streams/streamtypes.py b/redbot/cogs/streams/streamtypes.py index da5b0a481..0d0d591c1 100644 --- a/redbot/cogs/streams/streamtypes.py +++ b/redbot/cogs/streams/streamtypes.py @@ -153,7 +153,7 @@ class YoutubeStream(Stream): vid_data = data["items"][0] video_url = "https://youtube.com/watch?v={}".format(vid_data["id"]) title = vid_data["snippet"]["title"] - thumbnail = vid_data["snippet"]["thumbnails"]["default"]["url"] + thumbnail = vid_data["snippet"]["thumbnails"]["medium"]["url"] channel_title = vid_data["snippet"]["channelTitle"] embed = discord.Embed(title=title, url=video_url) embed.set_author(name=channel_title)