fix bug
This commit is contained in:
parent
b48276f391
commit
89021072c2
2
dump.py
2
dump.py
|
@ -41,7 +41,7 @@ finished = threading.Event()
|
||||||
|
|
||||||
def get_usb_iphone():
|
def get_usb_iphone():
|
||||||
Type = 'usb'
|
Type = 'usb'
|
||||||
if frida.__version__ < 12:
|
if int(frida.__version__.split('.')[0]) < 12:
|
||||||
Type = 'tether'
|
Type = 'tether'
|
||||||
device_manager = frida.get_device_manager()
|
device_manager = frida.get_device_manager()
|
||||||
changed = threading.Event()
|
changed = threading.Event()
|
||||||
|
|
Loading…
Reference in New Issue