From a9aaccb8f67a644d03d3f6c1fbd6a7f72dc45835 Mon Sep 17 00:00:00 2001 From: Danny Baumann Date: Sat, 27 Jun 2015 12:58:33 +0200 Subject: [PATCH] Allow saving attachments even if there's no intent handling them. For e.g. compressed files that doesn't mean they can't be opened, as they still can be unpacked by the file manager. Change-Id: I53c80b7bedb44732bc1cf346a83c1f6e39fb0da0 --- provider_src/com/android/email/AttachmentInfo.java | 1 - 1 file changed, 1 deletion(-) diff --git a/provider_src/com/android/email/AttachmentInfo.java b/provider_src/com/android/email/AttachmentInfo.java index 13ff068f7..cb3fdc978 100644 --- a/provider_src/com/android/email/AttachmentInfo.java +++ b/provider_src/com/android/email/AttachmentInfo.java @@ -180,7 +180,6 @@ public class AttachmentInfo { List activityList = pm.queryIntentActivities(intent, 0 /*no account*/); if (activityList.isEmpty()) { canView = false; - canSave = false; denyFlags |= DENY_NOINTENT; }