From b0cdb91d5eb0ae6348c142027a52519939fc5d2a Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Fri, 21 Jun 2024 08:54:46 +0200 Subject: [PATCH] Fix uninstall of add-on on fixup (#5142) --- supervisor/resolution/fixups/addon_execute_remove.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/resolution/fixups/addon_execute_remove.py b/supervisor/resolution/fixups/addon_execute_remove.py index f9e2633a8..bff58cb21 100644 --- a/supervisor/resolution/fixups/addon_execute_remove.py +++ b/supervisor/resolution/fixups/addon_execute_remove.py @@ -26,7 +26,7 @@ class FixupAddonExecuteRemove(FixupBase): # 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