2025.5.x - availability

after updating the kernel version to 2025.5.x, command stopped working:
availability: ‘{{ value.split(“\r\n” )[1] in [“1”,“0”] }}’,
on version 2025.4.4 everything worked fine

Hi, what is availability referring to?

The point is that the command for checking the status of devices in new kernel versions has stopped working. The device gives 2 states - true and false, and the new version apparently needs the number 0 when there is no connection. An example of a device configuration running on version 2025.4.4:

  - switch:
        name: AV
        command_on: 'curl -X GET -G "http://192.168.0.53:8080" -d "command=2&channel=1&value=1"'
        command_off: 'curl -X GET -G "http://192.168.0.53:8080" -d "command=2&channel=1&value=0"'
        command_state: 'curl -X GET -G "http://192.168.0.53:8080" -d "command=1&channel=1"'
        value_template: '{{ value.split("\r\n")[1] == "1" }}'
        unique_id: 'av'
        scan_interval: 10
        availability: '{{ value.split("\r\n")[1] in ["1","0"] }}'