Skip to content

Commit

Permalink
v1.1.6
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Johnson <[email protected]>
  • Loading branch information
binarylogic committed Apr 14, 2024
1 parent d4a7d89 commit 577b23d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/trinnov_altitude/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"issue_tracker": "https://github.com/binarylogic/trinnov-altitude-homeassistant/issues",
"loggers": ["trinnov_altitude"],
"requirements": ["trinnov_altitude>=1.2.3"],
"version": "1.1.5"
"version": "1.1.6"
}
2 changes: 1 addition & 1 deletion custom_components/trinnov_altitude/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def async_set_volume_level(self, volume: float) -> None:
@property
def available(self) -> bool: # type: ignore
"""Return if device is available."""
return self._device.power_on_available() || self._device.connected()
return self._device.power_on_available() or self._device.connected()

@property
def input_source(self) -> str | None: # type: ignore
Expand Down

0 comments on commit 577b23d

Please sign in to comment.