Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom_components/hacs/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def entity_picture(self) -> str | None:
):
return None

return f"https://brands.home-assistant.io/_/{self.repository.data.domain}/icon.png"
return f"/api/brands/integration/{self.repository.data.domain}/icon.png"

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to point to the brand's website if you are using HA < 2026.3.0, as that Path does not exist before it.
Can you also access this without a token?


async def async_install(self, version: str | None, backup: bool, **kwargs: Any) -> None:
"""Install an update."""
Expand Down