Fix regression in Tuya cover is_closed logic (#61303)
This commit is contained in:
parent
d7756efe55
commit
f4f13b7074
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ class TuyaCoverEntity(TuyaEntity, CoverEntity):
|
|||
is not None
|
||||
):
|
||||
return self.entity_description.current_state_inverse is not (
|
||||
current_state in (False, "fully_close")
|
||||
current_state in (True, "fully_close")
|
||||
)
|
||||
|
||||
if (position := self.current_cover_position) is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue