itswfpu

Results 1 comments of itswfpu

The issue can be resolved by modifying the `check_unifi_os` method as follows: ```python def check_unifi_os(self): _response = self.request("GET", url=self.url, allow_redirects=False) self.is_unifios = _response.status_code == 200 ``` As you've observed, the...