Astro binding and DST

Hello

I am new in Openhab, so I may be doing something wrong.
I have Openhab 1.8.1 running on a PI for a month now. Since yesterday (when DST started) my sunset and sunrise are wrong by one hour (sunset is showing 18:56 when it should be 19:56). The legal hour changed but not the calculated Sun events.

Thank you

João

In my case the DST is working fine, so the only help I can offer you are my two items:

DateTime    Sunrise_Time    "Sunrise [%1$tH:%1$tM]"    { astro="planet=sun, type=rise, property=start" }
DateTime    Sunset_Time    "Sunset [%1$tH:%1$tM]"     { astro="planet=sun, type=set, property=end" }

Also make sure your Pi is set to the correct timezone:
pi@raspberrypi2 ~ $ sudo raspi-config then
"Internationalisation Options" … “Change Timezone”

Thank you for your reply.
My items are just like yours. And timezone is correct.

DateTime Sunrise_Time “Nascer do Sol [%1$tH:%1$tM]” (gAstro) {astro=“planet=sun, type=rise, property=start”}
DateTime Sunset_Time “Pôr do Sol [%1$tH:%1$tM]” (gAstro) {astro=“planet=sun, type=set, property=end”}

Cannot understand what is wrong.

João