mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-27 16:10:58 +01:00
Prevent crash
This commit is contained in:
@@ -130,8 +130,7 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
try {
|
||||
onPreExecute(args);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
onException(args, ex);
|
||||
error(args, ex);
|
||||
}
|
||||
|
||||
future = getExecutor(context).submit(new Runnable() {
|
||||
@@ -195,8 +194,7 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
try {
|
||||
onPostExecute(args);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
onException(args, ex);
|
||||
error(args, ex);
|
||||
} finally {
|
||||
try {
|
||||
if (ex == null) {
|
||||
@@ -209,10 +207,9 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
|
||||
onExecuted(args, (T) data);
|
||||
} else
|
||||
onException(args, ex);
|
||||
error(args, ex);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
onException(args, ex);
|
||||
error(args, ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -221,6 +218,15 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
});
|
||||
}
|
||||
|
||||
void error(Bundle args, Throwable ex) {
|
||||
try {
|
||||
Log.e(ex);
|
||||
onException(args, ex);
|
||||
} catch (Throwable exex) {
|
||||
Log.e(exex);
|
||||
}
|
||||
}
|
||||
|
||||
void cancel(Context context) {
|
||||
if (future != null)
|
||||
if (future.cancel(false)) {
|
||||
|
||||
Reference in New Issue
Block a user