Skip to content

Commit b778dda

Browse files
committed
fix: Fixed issue where target timeframes can't be reconfigured on 2025.4 onwards (30 minutes dev time)
1 parent 9b7c68f commit b778dda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

custom_components/target_timeframes/config_flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ async def async_step_reconfigure(self, user_input: dict[str, Any] | None = None)
122122

123123
if len(errors) < 1 and user_input is not None:
124124
return self.async_update_and_abort(
125-
self._get_reconfigure_entry(),
125+
self._get_entry(),
126126
self._get_reconfigure_subentry(),
127127
data_updates=config,
128128
)
@@ -167,7 +167,7 @@ async def async_step_reconfigure(self, user_input: dict[str, Any] | None = None)
167167

168168
if len(errors) < 1 and user_input is not None:
169169
return self.async_update_and_abort(
170-
self._get_reconfigure_entry(),
170+
self._get_entry(),
171171
self._get_reconfigure_subentry(),
172172
data_updates=config,
173173
)

hacs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Target Timeframes",
33
"render_readme": true,
4-
"homeassistant": "2025.3.0",
4+
"homeassistant": "2025.4.0",
55
"hide_default_branch": true
66
}

0 commit comments

Comments
 (0)