mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-01 03:45:10 +00:00
Prevent crash
This commit is contained in:
parent
fce46ac9cd
commit
0e5a67fe9f
1 changed files with 5 additions and 1 deletions
|
@ -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 a new issue