diff --git a/custom_components/jokes/__init__.py b/custom_components/jokes/__init__.py index e357efa..0fbcb9d 100644 --- a/custom_components/jokes/__init__.py +++ b/custom_components/jokes/__init__.py @@ -38,7 +38,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): coordinator = JokeUpdateCoordinator( hass, _LOGGER, - update_interval=timedelta(seconds=60) + update_interval=timedelta(minutes=15) ) await coordinator.async_refresh() diff --git a/custom_components/jokes/manifest.json b/custom_components/jokes/manifest.json index 2eb3581..bc0ba15 100644 --- a/custom_components/jokes/manifest.json +++ b/custom_components/jokes/manifest.json @@ -2,7 +2,7 @@ "codeowners": ["@LaggAt"], "domain": "jokes", "name": "Jokes", - "version": "0.0.1", + "version": "0.0.2", "config_flow": true, "documentation": "https://github.com/LaggAt/ha-jokes/blob/master/README.md", "issue_tracker": "https://github.com/LaggAt/ha-jokes/issues", diff --git a/hacs.json b/hacs.json index 8c73e22..289386c 100644 --- a/hacs.json +++ b/hacs.json @@ -1,5 +1,5 @@ { "name": "jokes", - "hacs": "0.0.1", - "homeassistant": "2022.11.1" -} \ No newline at end of file + "hacs": "0.0.2", + "homeassistant": "2023.3.3" +}