PJlink | unavailable time error

I have an automation to turn off my projector when my AV receiver turns off, however when the automation is triggered to power off the projector, it throws an the error:

Stopped because an error was encountered at May 14, 2025 at 2:23:55 PM (runtime: 1.63 seconds)

unavailable time

If this will also happen if I trigger the automation manually, but not as often.

I am able to power on and off the projector using the PJlink card as well as switch inputs.

The automation:

alias: Cinema off
description: When AV Receiver turn off, the projector will turn off
triggers:
  - trigger: state
    entity_id:
      - media_player.basement
    from: playing
    to: "off"
    for:
      hours: 0
      minutes: 0
      seconds: 5
conditions: []
actions:
  - action: media_player.turn_off
    metadata: {}
    data: {}
    target:
      entity_id:
        - media_player.epsonprojector
    continue_on_error: true
  - choose:
      - conditions:
          - condition: state
            entity_id: media_player.epsonprojector
            state: "on"
            for:
              hours: 0
              minutes: 0
              seconds: 15
        sequence:
          - action: media_player.turn_off
            metadata: {}
            data: {}
            target:
              entity_id: media_player.epsonprojector
            continue_on_error: true
mode: single

No clue how to fix
I will test on my PJ

Post make/model in case that matters

This may be related

I’m seeing pretty much the same issue with a very similar automation - seems to occur very frequently now since I updated to the latest version of HA.

Error:

Perform action ‘Media player: Turn off’ on Epson_Projector
Executed: May 24, 2025 at 9:00:05 PM
Error: unavailable time
Result:
params:
domain: media_player
service: turn_off
service_data: {}
target:
entity_id:
- media_player.epson_projector
running_script: false

Projector: Epson LS11000

Let me know if I can provide any additional information to help trace and test the issue

Thanks