Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/data/history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const fetchRecent = (

export const fetchRecentWS = (
hass: HomeAssistant,
entityId: string,
entityId: string, // This may be comma seperate entities
Comment thread
bdraco marked this conversation as resolved.
Outdated
startTime: Date,
endTime: Date,
skipInitialState = false,
Expand All @@ -213,7 +213,7 @@ export const fetchRecentWS = (
include_start_time_state: !skipInitialState,
minimal_response: minimalResponse,
no_attributes: noAttributes || false,
entity_ids: [entityId],
entity_ids: entityId.split(","),
});

export const fetchDate = (
Expand Down