mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-29 17:11:12 +01: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();
|
||||
|
||||
Reference in New Issue
Block a user