Kodi/Roku: Add brand logos to brand folders at root level (#67251)
parent
d16f0ba32b
commit
241611ff05
|
@ -224,6 +224,9 @@ async def library_payload(hass):
|
|||
)
|
||||
)
|
||||
|
||||
for child in library_info.children:
|
||||
child.thumbnail = "https://brands.home-assistant.io/_/kodi/logo.png"
|
||||
|
||||
with contextlib.suppress(media_source.BrowseError):
|
||||
item = await media_source.async_browse_media(hass, None)
|
||||
# If domain is None, it's overview of available sources
|
||||
|
|
|
@ -135,6 +135,9 @@ async def root_payload(
|
|||
)
|
||||
)
|
||||
|
||||
for child in children:
|
||||
child.thumbnail = "https://brands.home-assistant.io/_/roku/logo.png"
|
||||
|
||||
try:
|
||||
browse_item = await media_source.async_browse_media(hass, None)
|
||||
|
||||
|
|
Loading…
Reference in New Issue