mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 16:57:53 +00:00
Handle width and height placeholders in the thumbnail URL (#136227)
This commit is contained in:
parent
e44cfa00af
commit
6a1279611d
@ -122,7 +122,7 @@ class TwitchCoordinator(DataUpdateCoordinator[dict[str, TwitchUpdate]]):
|
||||
stream.game_name if stream else None,
|
||||
stream.title if stream else None,
|
||||
stream.started_at if stream else None,
|
||||
stream.thumbnail_url if stream else None,
|
||||
stream.thumbnail_url.format(width="", height="") if stream else None,
|
||||
channel.profile_image_url,
|
||||
bool(sub),
|
||||
sub.is_gift if sub else None,
|
||||
|
Loading…
x
Reference in New Issue
Block a user