[V3 Streams] Fixed issue with making YT Stream Embed (#1812)

fixed error not allowing bot to make yt stream embed
This commit is contained in:
jjay12365 2018-06-06 14:57:25 -04:00 committed by Will
parent 95f51e1126
commit f830f73ae6

View File

@ -180,7 +180,7 @@ class YoutubeStream(Stream):
video_url = "https://youtube.com/watch?v={}".format(vid_data["id"]) video_url = "https://youtube.com/watch?v={}".format(vid_data["id"])
title = vid_data["snippet"]["title"] title = vid_data["snippet"]["title"]
thumbnail = vid_data["snippet"]["thumbnails"]["default"]["url"] thumbnail = vid_data["snippet"]["thumbnails"]["default"]["url"]
channel_title = data["snippet"]["channelTitle"] channel_title = vid_data["snippet"]["channelTitle"]
embed = discord.Embed(title=title, url=video_url) embed = discord.Embed(title=title, url=video_url)
embed.set_author(name=channel_title) embed.set_author(name=channel_title)
embed.set_image(url=rnd(thumbnail)) embed.set_image(url=rnd(thumbnail))