bundito
(sharvey)
December 2, 2018, 3:33pm
1
I just posted a custom weather/animated radar card a few days ago, and now the 0.83.2 update has broken it.
It uses calls like ${hass.states[sensor.dark_sky_daily_summary].state}
and worked beautifully.
Now it throws errors of cannot read state of "unknown"
and causes the entire page to fail to render.
Is there some new syntax I can use, or is this simply borked?
VDRainer
(🍻)
December 2, 2018, 5:22pm
2
There’s a Breaking Change in the dark_sky component.
Mayby some sensors get other entity_id’s.
bundito
(sharvey)
December 2, 2018, 9:26pm
3
Thanks for pointing that out. This is my first time working with real beta software where things change and break radically between updates. I’ll try to find a workaround for my component.
it’s prob that you have to put _0
for the day zero states (this is actually fixing an inconsistency they had before):
${hass.states[sensor.dark_sky_daily_summary_0].state}