From df17668369922cdd594f41eac2c39208bd82a75d Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 1 Mar 2021 15:43:50 +0000 Subject: [PATCH] Fix add-on is not installed anymore --- supervisor/resolution/checks/addon_pwned.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/resolution/checks/addon_pwned.py b/supervisor/resolution/checks/addon_pwned.py index 3c323edf0..1fcc67d23 100644 --- a/supervisor/resolution/checks/addon_pwned.py +++ b/supervisor/resolution/checks/addon_pwned.py @@ -57,7 +57,7 @@ class CheckAddonPwned(CheckBase): addon = self.sys_addons.get(reference) # Uninstalled - if not addon: + if not addon or not addon.is_installed: return False # Not in use anymore