gui_cache: Use new check_backups_only property

This commit is contained in:
Mykola Grymalyuk
2023-11-06 09:23:29 -07:00
parent 139f94aae1
commit 5db862d38b

View File

@@ -43,7 +43,7 @@ class OSUpdateFrame(wx.Frame):
self.kdk_obj: kdk_handler.KernelDebugKitObject = None
def _kdk_thread_spawn():
self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True)
self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True, check_backups_only=True)
kdk_thread = threading.Thread(target=_kdk_thread_spawn)
kdk_thread.start()