mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 01:23:38 +02:00
Handle all unexpected errors
This commit is contained in:
@@ -123,6 +123,11 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
|
||||
.putExtra("folder", folder.id)
|
||||
.putExtra("outgoing", folder.isOutgoing()));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(context, owner, ex);
|
||||
}
|
||||
}.load(context, owner, args);
|
||||
} else {
|
||||
Bundle args = new Bundle();
|
||||
@@ -144,6 +149,11 @@ public class AdapterOperation extends RecyclerView.Adapter<AdapterOperation.View
|
||||
.putExtra("thread", message.thread)
|
||||
.putExtra("id", message.id));
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(context, owner, ex);
|
||||
}
|
||||
}.load(context, owner, args);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -243,6 +243,11 @@ public class FragmentMessages extends FragmentEx {
|
||||
Snackbar.make(view, R.string.title_sync_queued, Snackbar.LENGTH_LONG).show();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.load(FragmentMessages.this, args);
|
||||
}
|
||||
});
|
||||
@@ -1813,7 +1818,7 @@ public class FragmentMessages extends FragmentEx {
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
super.onException(args, ex);
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.load(FragmentMessages.this, args);
|
||||
}
|
||||
|
||||
@@ -148,6 +148,11 @@ public class FragmentOperations extends FragmentEx {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.load(FragmentOperations.this, new Bundle());
|
||||
}
|
||||
})
|
||||
|
||||
@@ -454,6 +454,11 @@ public class FragmentSetup extends FragmentEx {
|
||||
EntityOperation.sync(db, folder.id);
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
Helper.unexpectedError(getContext(), getViewLifecycleOwner(), ex);
|
||||
}
|
||||
}.load(FragmentSetup.this, new Bundle());
|
||||
}
|
||||
|
||||
|
||||
@@ -162,16 +162,12 @@ public abstract class SimpleTask<T> implements LifecycleObserver {
|
||||
}
|
||||
}
|
||||
|
||||
protected T onLoad(Context context, Bundle args) throws Throwable {
|
||||
// Be careful not to access members in outer scopes
|
||||
return null;
|
||||
}
|
||||
protected abstract T onLoad(Context context, Bundle args) throws Throwable;
|
||||
|
||||
protected void onLoaded(Bundle args, T data) {
|
||||
}
|
||||
|
||||
protected void onException(Bundle args, Throwable ex) {
|
||||
}
|
||||
protected abstract void onException(Bundle args, Throwable ex);
|
||||
|
||||
private static class Result {
|
||||
Throwable ex;
|
||||
|
||||
Reference in New Issue
Block a user