From d0d0b141aa56d8264d2efdba9bb4fabdab197b41 Mon Sep 17 00:00:00 2001 From: myTselection Date: Sun, 1 Sep 2024 22:45:59 +0200 Subject: [PATCH] bugfix device update configuration submit failure --- custom_components/carbu_com/config_flow.py | 2 +- custom_components/carbu_com/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/carbu_com/config_flow.py b/custom_components/carbu_com/config_flow.py index 71ba866..c7c2ad4 100644 --- a/custom_components/carbu_com/config_flow.py +++ b/custom_components/carbu_com/config_flow.py @@ -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" \ No newline at end of file diff --git a/custom_components/carbu_com/manifest.json b/custom_components/carbu_com/manifest.json index 6e07290..9017b68 100644 --- a/custom_components/carbu_com/manifest.json +++ b/custom_components/carbu_com/manifest.json @@ -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" }