Problem sending some values to bus since migration to knx2 binding

Hi together,

since my migration to knx2 binding (OH 2.3.0), it´s not more possible to send
the current time to knx bus. Before it works properly.

Let me say everything else together with knx works perfectly.
Receiving temperature, switching and status.
Only sending ntp time from OH to knx doesn’t work.

knx config:

Bridge knx:ip:bridge [ 
    ipAddress="192.168.0.26", 
    portNumber=3671, 
    localIp="192.168.0.30", 
    type="TUNNEL", 
    readingPause=50, 
    responseTimeout=10, 
    readRetriesLimit=3, 
    autoReconnectPeriod=1,
    localSourceAddr="0.0.0"
] {
    Thing device generic [
        address="1.1.255",
        fetch=true,
        pingInterval=300,
        readInterval=3600
    ] {
		Type datetime	   : Time					    "Alarm"					[ ga="10.001:0/5/254" ]
    }
}

My item config:

    DateTime Uhrzeit "Time [%1$tH:%1$tM]"  { channel="ntp:ntp:local:dateTime", channel="knx:device:bridge:generic:Time" }
    /* past config under OH 2.2.0
DateTime Uhrzeit "Time [%1$tH:%1$tM]"  { channel="ntp:ntp:local:dateTime", knx="10.001:0/5/254" } */

In UI time is shown and it looks fine.
Any idea what is wrong?

Best,
Lars

Nobody who can help? :thinking:

As workaround I‘ve created a rule with

Time.sendCommand(Uhrzeit.state)

That works and sends current time to my KNX bus, but I guess this can‘t be the solution!

Further ideas?

Thanks,
Lars