mirror of https://github.com/M66B/FairEmail.git
Improved error message
This commit is contained in:
parent
5870856402
commit
7a456b9cdd
|
@ -418,7 +418,7 @@ public class FragmentBase extends Fragment {
|
|||
name = Long.toString(attachment.id);
|
||||
DocumentFile document = tree.createFile(attachment.type, name);
|
||||
if (document == null)
|
||||
throw new FileNotFoundException(uri + ":" + name);
|
||||
throw new FileNotFoundException("Could not save " + uri + ":" + name);
|
||||
|
||||
ParcelFileDescriptor pfd = null;
|
||||
OutputStream os = null;
|
||||
|
@ -470,6 +470,9 @@ public class FragmentBase extends Fragment {
|
|||
return;
|
||||
}
|
||||
|
||||
if (ex instanceof FileNotFoundException)
|
||||
ToastEx.makeText(getContext(), ex.getMessage(), Toast.LENGTH_LONG).show();
|
||||
else
|
||||
Log.unexpectedError(getParentFragmentManager(), ex);
|
||||
}
|
||||
}.execute(this, args, "attachments:save");
|
||||
|
|
Loading…
Reference in New Issue