From a882cfafb17fccb3fd5680d2cca58b169548e460 Mon Sep 17 00:00:00 2001 From: Sean Mooney <sean.mooney@gmail.com> Date: Sun, 5 Jul 2020 05:28:05 -0400 Subject: [PATCH] Fix default icon for Withings sleep sensor (#37502) The icon for Withings sleep sensor was using `mdi:bed` (which is correct for MDI v5.0.45 and later). However Home Assistant still uses an older version of Material Design Icons (4.9.95), so this `mdi:bed` icon was not displaying at all. It should be`mdi:hotel` instead, which you can see here: https://cdn.materialdesignicons.com/4.9.95/ --- homeassistant/components/withings/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/withings/common.py b/homeassistant/components/withings/common.py index 5d8d5799fc1..30b67fac566 100644 --- a/homeassistant/components/withings/common.py +++ b/homeassistant/components/withings/common.py @@ -450,7 +450,7 @@ WITHINGS_ATTRIBUTES = [ NotifyAppli.BED_IN, "In bed", "", - "mdi:bed", + "mdi:hotel", BINARY_SENSOR_DOMAIN, True, UpdateType.WEBHOOK, -- GitLab