handle patched versions (18.2 beta 3+)

This commit is contained in:
leminlimez
2024-11-11 16:47:45 -05:00
parent 91acc8288a
commit 2912b97eea
3 changed files with 15 additions and 1 deletions

View File

@@ -181,6 +181,12 @@ class DeviceManager:
return False
else:
return self.data_singleton.current_device.supported()
def get_current_device_patched(self) -> bool:
if self.data_singleton.current_device == None:
return True
else:
return self.data_singleton.current_device.is_exploit_fully_patched()
def reset_device_pairing(self):