Skip to content

Commit

Permalink
bump mass to b139
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Apr 20, 2024
1 parent 380f66c commit d8b5eb4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion custom_components/mass/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,14 @@ async def async_step_on_supervisor(
return await self.async_step_manual()

self.use_addon = True
await install_repository(self.hass)
try:
await install_repository(self.hass)
except Exception as err:
# TODO: make this exception more explicit
LOGGER.warning(
"Failed to install the add-on repository, is it already installed?",
exc_info=err,
)
addon_info = await self._async_get_addon_info()

if addon_info.state == AddonState.RUNNING:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/mass/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"music_assistant"
],
"requirements": [
"music-assistant==2.0.0b131"
"music-assistant==2.0.0b139"
],
"version": "0.0.0",
"zeroconf": [
Expand Down

0 comments on commit d8b5eb4

Please sign in to comment.