mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 08:33:37 +02:00
Always catch exceptions
This commit is contained in:
@@ -541,10 +541,11 @@ public class FragmentCompose extends Fragment {
|
||||
|
||||
@Override
|
||||
public Throwable loadInBackground() {
|
||||
long id = args.getLong("id");
|
||||
boolean send = args.getBoolean("send", false);
|
||||
Log.i(Helper.TAG, "Put load id=" + id + " send=" + send);
|
||||
try {
|
||||
long id = args.getLong("id");
|
||||
boolean send = args.getBoolean("send", false);
|
||||
Log.i(Helper.TAG, "Put load id=" + id + " send=" + send);
|
||||
|
||||
DB db = DB.getInstance(getContext());
|
||||
DaoMessage message = db.message();
|
||||
DaoIdentity identity = db.identity();
|
||||
|
||||
@@ -35,6 +35,7 @@ import android.support.v4.content.Loader;
|
||||
import android.support.v7.app.AppCompatActivity;
|
||||
import android.support.v7.widget.LinearLayoutManager;
|
||||
import android.support.v7.widget.RecyclerView;
|
||||
import android.util.Log;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
@@ -166,8 +167,13 @@ public class FragmentMessages extends Fragment {
|
||||
@Override
|
||||
public Bundle loadInBackground() {
|
||||
Bundle result = new Bundle();
|
||||
EntityFolder drafts = DB.getInstance(getContext()).folder().getPrimaryDraftFolder();
|
||||
result.putBoolean("drafts", drafts != null);
|
||||
try {
|
||||
EntityFolder drafts = DB.getInstance(getContext()).folder().getPrimaryDraftFolder();
|
||||
result.putBoolean("drafts", drafts != null);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(Helper.TAG, ex + "\n" + Log.getStackTraceString(ex));
|
||||
result.putBoolean("drafts", false);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user