We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecf3cd7 commit 7b1d169Copy full SHA for 7b1d169
custom_components/growcube/manifest.json
@@ -10,5 +10,5 @@
10
"requirements": [
11
"growcube-client==1.2.3"
12
],
13
- "version": "1.0.2"
+ "version": "1.0.3"
14
}
custom_components/growcube/services.py
@@ -78,7 +78,7 @@ async def async_call_delete_watering_service(service_call: ServiceCall) -> None:
78
79
async def _async_handle_water_plant(hass: HomeAssistant, data: Mapping[str, Any]) -> None:
80
81
- coordinator = _get_coordinator(hass, data)
+ coordinator, device = _get_coordinator(hass, data)
82
83
if coordinator is None:
84
_LOGGER.warning(f"Unable to find coordinator for {data[ATTR_DEVICE_ID]}")
0 commit comments