diff --git a/homeassistant/components/asuswrt/bridge.py b/homeassistant/components/asuswrt/bridge.py index dd50b849b75760..1878493929f9cc 100644 --- a/homeassistant/components/asuswrt/bridge.py +++ b/homeassistant/components/asuswrt/bridge.py @@ -324,7 +324,7 @@ async def _get_available_temperature_sensors(self) -> list[str]: @handle_errors_and_zip((IndexError, OSError, ValueError), SENSORS_BYTES) async def _get_bytes(self) -> tuple[float | None, float | None]: """Fetch byte information from the router.""" - return await self._api.async_get_bytes_total() + return await self._api.async_get_rx(), await self._api.async_get_tx() @handle_errors_and_zip((IndexError, OSError, ValueError), SENSORS_RATES) async def _get_rates(self) -> tuple[float, float]: