I use a google calendar with some neighbors to coordinate who has access to a co-owned space. For each day on the calendar, there’s a single, all-day entry that’s just a name. (E.g., “Paul”)
In my frontend, I use a simple entity card to show the “message” attribute:
type: entity
entity: calendar.shared_schedule
attribute: message
name: 'Access today:'
For the last year, this has worked without issue to show me who has access to the space TODAY.
However, for some reason, the calendar entity is reporting back tomorrow’s all-day event and so the message attribute is now showing me who has access to the space TOMORROW. Here’s the entity state from the developer tools:
message: Paul
all_day: true
start_time: '2022-05-13 00:00:00'
end_time: '2022-05-14 00:00:00'
location: ''
description: ''
offset_reached: false
friendly_name: Access Schedule
So… anyone have any ideas?