Skip to content

Commit

Permalink
bugfix device update configuration submit failure
Browse files Browse the repository at this point in the history
  • Loading branch information
myTselection committed Sep 1, 2024
1 parent 7b1391a commit d0d0b14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/carbu_com/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ async def async_step_edit(self, user_input):
self.config_entry, data=user_input
)
self._errors = {}
custom_title = f"{NAME} {user_input.get('postalcode')} {self._init_info.get('town')} {user_input.get('country')}"
custom_title = f"{NAME} {user_input.get('postalcode')} {user_input.get('town')} {user_input.get('country')}"
return self.async_create_entry(title=custom_title, data=None)
else:
self._errors["base"] = "api_key_error"
2 changes: 1 addition & 1 deletion custom_components/carbu_com/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/myTselection/carbu_com/issues",
"requirements": ["bs4","requests","voluptuous", "ratelimit"],
"version": "11.2.0"
"version": "11.2.1"
}

0 comments on commit d0d0b14

Please sign in to comment.