Transition stops working

SOLVED: Issue was within Zigbee2mqtt. After last update it started to work again.

I’ve notice the transition for one light just stops working. I had it set for 120s. to turn off, but instead it turns off instantly. Seems like it happened after the 2024.8 update. So far, with the 2024.9 it has not been resolved.

This is my config:

alias: Bed light slow off
description: ""
trigger:
  - platform: webhook
    allowed_methods:
      - POST
      - PUT
    local_only: true
    webhook_id: bed-light-slow-off-###################
    id: Webhook
  - platform: device
    domain: mqtt
    device_id: c35e7245715fcbc452518e6c22798b91
    type: action
    subtype: "off"
    id: Switch off
  - platform: device
    domain: mqtt
    device_id: c35e7245715fcbc452518e6c22798b91
    type: action
    subtype: "on"
    id: Switch on
condition:
  - condition: device
    device_id: 11ce12696626d9000e069b977ea64c5f
    domain: device_tracker
    entity_id: ba09859e8d901b1b010138a54217dc23
    type: is_home
action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - Webhook
              - Switch off
        sequence:
          - action: light.turn_off
            target:
              device_id:
                - 871ea5b361fc699cb8c0ce24160609f4
            data:
              transition: 120
      - conditions:
          - condition: trigger
            id:
              - Switch on
        sequence:
          - metadata: {}
            data:
              brightness_pct: 100
              transition: 5
              kelvin: 6001
            target:
              device_id: 871ea5b361fc699cb8c0ce24160609f4
            action: light.turn_on
            enabled: true
mode: single