Skip to content

Commit

Permalink
Update sharesRejected sensor icon to share-off
Browse files Browse the repository at this point in the history
  • Loading branch information
DerMiika committed Oct 24, 2024
1 parent 1f4ad94 commit e113661
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ def _get_icon(self, sensor_type):
return "mdi:speedometer"
elif sensor_type == "power":
return "mdi:flash"
elif sensor_type in ["sharesAccepted", "sharesRejected"]:
elif sensor_type == "sharesAccepted":
return "mdi:share"
elif sensor_type == "sharesRejected":
return "mdi:share-off"
elif sensor_type == "temp":
return "mdi:thermometer"
elif sensor_type == "uptimeSeconds":
Expand Down

0 comments on commit e113661

Please sign in to comment.