Skip to content

Commit

Permalink
Re-add code from missing commit ec9731b
Browse files Browse the repository at this point in the history
  • Loading branch information
tisboyo committed Dec 17, 2020
1 parent f535569 commit 7baac27
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cogs/twitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,11 @@ async def get_twitch_status():
color=discord.Color.green(),
type="rich",
)
embed.set_image(url=streamers["thumbnail_url"].format(width=640, height=480))

if user_name == "baldengineer": # TODO #27
embed.set_image(url="https://baldengineer.com/thumb-for-twitch.jpg")
else:
embed.set_image(url=streamers["thumbnail_url"].format(width=640, height=480))
embed.set_thumbnail(url=Twitch.profile_picture[user_name])
embed.add_field(
name=streamers["user_name"],
Expand Down

0 comments on commit 7baac27

Please sign in to comment.