mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
fce46ac9cd
commit
0e5a67fe9f
|
@ -1390,7 +1390,11 @@ public class FragmentSetup extends FragmentBase implements SharedPreferences.OnS
|
|||
|
||||
taskGraph.execute(FragmentSetup.this, args, "graph:contacts");
|
||||
} catch (Throwable ex) {
|
||||
Log.unexpectedError(getParentFragmentManager(), ex);
|
||||
try {
|
||||
Log.unexpectedError(getParentFragmentManager(), ex);
|
||||
} catch (Throwable exex) {
|
||||
Log.w(exex);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue