[SOLVED] Astro items offset do not work

Hi Guys,
I can not understand the Astro-Binding function. I hope one of you can help me there.

I have set up the following:
Items

DateTime astro_Sonnenuntergang  "Abenddämmerung [%1$td.%1$tm.%1$tY %1$tH:%1$tM Uhr]" 					{channel="astro:sun:local:civilDusk#end"}

Offset I have specified here:
12-08-_2019_11-02-25

The offset is calculated correctly on the sitemap:

Text item=astro_Sonnenuntergang						icon="sunset"

So far everything is as it should be …
But if I want to use the time in rules then without offset:

rule "Rollläden herunterfahren"
when
    Channel 'astro:sun:local:civilDusk#event' triggered END or
    Time cron "0 30 21 * * ?" or
    Time cron "0 0 21 * * ?"
then

Whats going on?

The offset does not apply to astro:sun:local:civilDusk
It applies to astro:sun:local:civilDusk#end

If you want to offset astro:sun:local:civilDusk#event you must do that separately; it can be a different offset.

You are dam right. I did not think that myself. Thank you

What happens if I enter a time at earliest and Latest?

It’s in the docs, with examples. Try it.