From 7c4837763e1cb010e3bdd6c59fec5356704d1a00 Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Tue, 6 Sep 2022 11:33:31 +0200 Subject: [PATCH] always load os data if supervisor --- src/panels/config/hardware/ha-config-hardware.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/panels/config/hardware/ha-config-hardware.ts b/src/panels/config/hardware/ha-config-hardware.ts index a84c053584..6a4227879d 100644 --- a/src/panels/config/hardware/ha-config-hardware.ts +++ b/src/panels/config/hardware/ha-config-hardware.ts @@ -352,11 +352,10 @@ class HaConfigHardware extends SubscribeMixin(LitElement) { try { if (isComponentLoaded(this.hass, "hardware")) { this._hardwareInfo = await this.hass.callWS({ type: "hardware/info" }); - } else if (isHassioLoaded) { - this._OSData = await fetchHassioHassOsInfo(this.hass); } if (isHassioLoaded) { + this._OSData = await fetchHassioHassOsInfo(this.hass); this._hostData = await fetchHassioHostInfo(this.hass); } } catch (err: any) {