Skip to content

Commit

Permalink
Fix doorbell status led
Browse files Browse the repository at this point in the history
  • Loading branch information
starkillerOG committed Mar 14, 2023
1 parent b35f271 commit 2ec9604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reolink_aio/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def construct_capabilities(self, warnings=True) -> None:
if self.api_version("ledControl", channel) > 0 and channel in self._ir_settings:
self._capabilities[channel].append("ir_lights")

if self.api_version("powerLed", channel) > 0:
if self.api_version("powerLed", channel) > 0 or self.is_doorbell(channel):
# powerLed == statusLed
self._capabilities[channel].append("status_led")

Expand Down

0 comments on commit 2ec9604

Please sign in to comment.