Skip to content

Commit

Permalink
Fix #703: Unable to use Floodlight anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajNyiri committed Nov 12, 2024
1 parent 582ee6a commit 69a4ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/tapo_control/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def async_turn_on(self) -> None:
if (
camData is not False
and "whitelampStatus" in camData
and str(camData["whitelampStatus"]) == "1"
and str(camData["whitelampStatus"]) == "0"
):
result = await self._hass.async_add_executor_job(
self._controller.reverseWhitelampStatus
Expand Down

0 comments on commit 69a4ca3

Please sign in to comment.