Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
amosyuen committed Jan 13, 2025
1 parent 5edfe10 commit 6818fbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/epson_projector_link/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/amosyuen/ha-epson-projector-link/issues",
"requirements": ["pyserial_asyncio>=0.4", "async_timeout>=3.0.0"],
"version": "1.1.0"
"version": "1.1.1"
}
2 changes: 1 addition & 1 deletion custom_components/epson_projector_link/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ async def async_get_power(self):
return self._attr_state
except asyncio.TimeoutError:
async_call_later(
self.hass, POWER_TIMEOUT_RETRY_INTERVAL, self.async_get_power
self.hass, POWER_TIMEOUT_RETRY_INTERVAL, self._async_get_power_callback
)
except Exception as err:
_LOGGER.debug("async_get_power: Error getting power error=%s", err)
Expand Down

0 comments on commit 6818fbd

Please sign in to comment.