diff --git a/homeassistant/components/rest/sensor.py b/homeassistant/components/rest/sensor.py index 422ce84cc46..f18fcc8287f 100644 --- a/homeassistant/components/rest/sensor.py +++ b/homeassistant/components/rest/sensor.py @@ -144,6 +144,7 @@ class RestSensor(RestEntity, SensorEntity): content_type.startswith("text/xml") or content_type.startswith("application/xml") or content_type.startswith("application/xhtml+xml") + or content_type.startswith("application/rss+xml") ): try: value = json.dumps(xmltodict.parse(value))