Skip to content

Commit 2c30b9a

Browse files
- [tool] Update codes
Signed-off-by: ColdWindScholar <[email protected]>
1 parent 31becec commit 2c30b9a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/tool.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -3656,7 +3656,11 @@ def unpack(chose, form: str = '') -> bool:
36563656
return False
36573657
if form == 'payload':
36583658
print(lang.text79 + "payload")
3659-
Dumper(work + "payload.bin", work, diff=False, old='old', images=chose).run()
3659+
dumper = Dumper(work + "payload.bin", work, diff=False, old='old', images=chose)
3660+
try:
3661+
dumper.run()
3662+
except RuntimeError:
3663+
dumper.run(slow=True)
36603664
return True
36613665
elif form == 'super':
36623666
print(lang.text79 + "Super")

0 commit comments

Comments
 (0)