File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -224,15 +224,19 @@ - (void)jailbreak {
224224 });
225225 postjailbreak_remount ();
226226
227- if (!postjailbreak_check_status () || reinstall_strap) {
227+ if (!postjailbreak_check_status ()) {
228+ reinstall_strap = true ;
229+ }
230+
231+ if (reinstall_strap) {
228232 dispatch_async (dispatch_get_main_queue (), ^{
229233 [_jailbreak_button setTitle: @" Installing bootstrap" forState: UIControlStateDisabled];
230234 });
231235 postjailbreak_bootstrap ();
232236
233237 }
234238
235- if (!postjailbreak_check_sbshowapp () || ! postjailbreak_check_status () || reinstall_strap) {
239+ if (!postjailbreak_check_sbshowapp () || reinstall_strap) {
236240 dispatch_async (dispatch_get_main_queue (), ^{
237241 [_jailbreak_button setTitle: @" Fixing icons" forState: UIControlStateDisabled];
238242 });
You can’t perform that action at this time.
0 commit comments