Skip to content

Commit

Permalink
Fix #211: Wrong MDI-icon for privacy switch (disabled)
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajNyiri committed Oct 18, 2022
1 parent 1374636 commit 672bdb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/tapo_control/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def updateTapo(self, camData):
@property
def icon(self) -> str:
if self.is_on:
return "mdi:eye-outline-off"
return "mdi:eye-off-outline"
else:
return "mdi:eye-outline"

Expand Down

0 comments on commit 672bdb5

Please sign in to comment.