mirror of
https://github.com/tomaae/homeassistant-mikrotik_router.git
synced 2025-08-02 00:44:31 +02:00
Fix version check for devices without a physical wifi radio
This commit is contained in:
parent
cf1b56c51e
commit
464ba7b768
1 changed files with 1 additions and 1 deletions
|
@ -532,7 +532,7 @@ class MikrotikCoordinator(DataUpdateCoordinator[None]):
|
|||
self.support_capsman = False
|
||||
self._wifimodule = "wifi"
|
||||
|
||||
elif self.minor_fw_version >= 13:
|
||||
elif (self.major_fw_version == 7 and self.minor_fw_version >= 13) or self.major_fw_version > 7:
|
||||
self.support_capsman = False
|
||||
self._wifimodule = "wifi"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue