MyQ Controls Working...but state not updating

Hi all! I’m a bit new to this so apologize if this is newbie question. I’ve been getting a couple of simple automations squared on my system and one of them is to automatically shut the garage door at 9 pm if it’s still open. I can trigger it to shut the garage door, but the state in lovelace and in my MyQ app is still showing open. Eventually myq freaks out and forces me to manually open the door so it can reset it’s status. The same thing happens if I close it via. the UI and not the automation rule. Anyone else having an issue with this?

Adding more to it, in the log book says the following (which doesn’t make a lot of sense):
5:08 PM mygaragedoor changed to open
5:08 PM mygaragedoor changed to closing
5:08 PM mygaragedoor changed to open

I’m running HassOS 2.12 and HA version 0.98

Here’s my automation rule:

- id: '12345677890123'
  alias: Close Garage Door for Bed
  trigger:
  - at: '21:00:00'
    platform: time
  condition:
  - condition: state
    entity_id: cover.mygaragedoor
    state: open
  action:
  - service: cover.close_cover
    data:
      entity_id: cover.mygaragedoor
  - data:
      message: The garage door was still open...so I closed it.
      target:
      - '123948123740198'
    service: notify.hass_discord

Were you ever able to get this working? I want to do something similar.