bramkragten / weather-card

Weather Card with animated icons for Home Assistant Lovelace
MIT License
494 stars 171 forks source link

Night time icons not correctly loading #133

Open vingerha opened 2 years ago

vingerha commented 2 years ago

a.o. partlycloudy is showing the same for day and night

fierske commented 2 weeks ago

For those still interested, at "hourly" they forgot to include whether the sun is already down or not. You can modify the code in the .js as follows:

<i
  class="icon"
  style="background: none, url('${this.getWeatherIcon(
  daily.condition.toLowerCase(), this.hass.states["sun.sun"]
  )}') no-repeat; background-size: contain"
></i>

You have to add "this.hass.states["sun.sun"]"