Skip to content

Commit

Permalink
Fix uninstall of add-on on fixup (#5142)
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed Jun 21, 2024
1 parent 4829eb8 commit b0cdb91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion supervisor/resolution/fixups/addon_execute_remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def process_fixup(self, reference: str | None = None) -> None:
# Remove addon
_LOGGER.info("Remove addon: %s", reference)
try:
await addon.uninstall()
await addon.uninstall(remove_config=False)
except AddonsError as err:
_LOGGER.error("Could not remove %s due to %s", reference, err)
raise ResolutionFixupError() from None
Expand Down

0 comments on commit b0cdb91

Please sign in to comment.