Skip to content

Commit

Permalink
Fix crash at startup
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Feb 27, 2025
1 parent a8e0870 commit 6d0fb4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/controllers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ async def _migrate(self) -> None:
default_providers = {x.domain for x in self.mass.get_provider_manifests() if x.builtin}
for provider_config in self._data.get(CONF_PROVIDERS, {}).values():
if provider_config["domain"] not in default_providers:
self.set(CONF_ONBOARD_DONE, True)
self._data[CONF_ONBOARD_DONE] = True
changed = True
break

Expand Down

0 comments on commit 6d0fb4e

Please sign in to comment.