Skip to content

Commit

Permalink
Remove repository details from dispatch message (#3427)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Jan 2, 2024
1 parent 0cd6832 commit 94e66ed
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions custom_components/hacs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,15 +903,7 @@ async def async_get_category_repositories_experimental(self, category: str) -> N
)
self.repositories.unregister(repository)

self.async_dispatch(
HacsDispatchEvent.REPOSITORY,
{
"id": 1337,
"action": "update",
"repository": repository.data.full_name,
"repository_id": repository.data.id,
},
)
self.async_dispatch(HacsDispatchEvent.REPOSITORY, {})

async def async_get_category_repositories(self, category: HacsCategory) -> None:
"""Get repositories from category."""
Expand Down

0 comments on commit 94e66ed

Please sign in to comment.