From d81f4a3a6aa93da4002e1f6a36326769be63fe81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Sun, 27 Mar 2022 11:27:17 +0200 Subject: [PATCH] Force update on remove (#2569) --- custom_components/hacs/tasks/setup_websocket_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/hacs/tasks/setup_websocket_api.py b/custom_components/hacs/tasks/setup_websocket_api.py index dcccbc6ce27..9575cd8ea36 100644 --- a/custom_components/hacs/tasks/setup_websocket_api.py +++ b/custom_components/hacs/tasks/setup_websocket_api.py @@ -338,7 +338,7 @@ async def hacs_repository(hass, connection, msg): elif action == "uninstall": repository.data.new = False - await repository.update_repository(ignore_issues=True) + await repository.update_repository(ignore_issues=True, force=True) await repository.uninstall() elif action == "hide":