mirror of
https://github.com/home-assistant/core.git
synced 2025-08-06 14:15:12 +02:00
* Added additional string check * optimaze
This commit is contained in:
committed by
Pascal Vizeli
parent
31f189da82
commit
6d01838632
@@ -708,7 +708,7 @@ class WUndergroundSensor(Entity):
|
||||
def entity_picture(self):
|
||||
"""Return the entity picture."""
|
||||
url = self._cfg_expand("entity_picture")
|
||||
if url is not None:
|
||||
if isinstance(url, str):
|
||||
return re.sub(r'^http://', 'https://', url, flags=re.IGNORECASE)
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user