Skip to content

Commit

Permalink
Update entities is always experimental (#3033)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Jan 22, 2023
1 parent d528841 commit a7eb581
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions custom_components/hacs/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ async def async_release_notes(self) -> str | None:
if self.repository.pending_restart or not self.repository.can_download:
return None

if (
self.hacs.configuration.experimental
and self.latest_version not in self.repository.data.published_tags
):
if self.latest_version not in self.repository.data.published_tags:
releases = await self.repository.get_releases(
prerelease=self.repository.data.show_beta,
returnlimit=self.hacs.configuration.release_limit,
Expand Down

0 comments on commit a7eb581

Please sign in to comment.