Added feedback on download raw message

pull/172/head
M66B 5 years ago
parent 98cc321f2a
commit 05417a1fd0

@ -3681,7 +3681,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
new SimpleTask<Void>() {
@Override
protected Void onExecute(Context context, Bundle args) {
Long id = args.getLong("id");
long id = args.getLong("id");
DB db = DB.getInstance(context);
try {
@ -3705,6 +3705,11 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
return null;
}
@Override
protected void onExecuted(Bundle args, Void data) {
ToastEx.makeText(context, R.string.title_executing, Toast.LENGTH_LONG).show();
}
@Override
protected void onException(Bundle args, Throwable ex) {
Log.unexpectedError(parentFragment.getParentFragmentManager(), ex);

Loading…
Cancel
Save