Fixing the openssl issue (#20570)
parent
e95c50c742
commit
988bcf9399
|
@ -14,7 +14,7 @@ from homeassistant.const import (
|
|||
from homeassistant.helpers import config_validation as cv
|
||||
from homeassistant.helpers.discovery import async_load_platform
|
||||
|
||||
REQUIREMENTS = ['aioasuswrt==1.1.18']
|
||||
REQUIREMENTS = ['aioasuswrt==1.1.20']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@ class AsuswrtSensor(Entity):
|
|||
|
||||
async def async_update(self):
|
||||
"""Fetch status from asuswrt."""
|
||||
self._rates = await self._api.async_get_packets_total()
|
||||
self._rates = await self._api.async_get_bytes_total()
|
||||
self._speed = await self._api.async_get_current_transfer_rates()
|
||||
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ afsapi==0.0.4
|
|||
aioambient==0.1.0
|
||||
|
||||
# homeassistant.components.asuswrt
|
||||
aioasuswrt==1.1.18
|
||||
aioasuswrt==1.1.20
|
||||
|
||||
# homeassistant.components.device_tracker.automatic
|
||||
aioautomatic==0.6.5
|
||||
|
|
Loading…
Reference in New Issue