mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 05:44:51 +02:00
Use corrected mime type for saving attachments
This commit is contained in:
@@ -508,7 +508,7 @@ public class FragmentBase extends Fragment {
|
||||
Intent create = new Intent(Intent.ACTION_CREATE_DOCUMENT);
|
||||
create.addCategory(Intent.CATEGORY_OPENABLE);
|
||||
create.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
|
||||
create.setType(attachment.type);
|
||||
create.setType(attachment.getMimeType());
|
||||
create.putExtra(Intent.EXTRA_TITLE, attachment.name);
|
||||
Helper.openAdvanced(context, create);
|
||||
PackageManager pm = context.getPackageManager();
|
||||
|
||||
Reference in New Issue
Block a user