am 70e99aa9: Merge "Fix download of non-smart-forwarded attachments" into honeycomb-mr1

* commit '70e99aa97f027f9a7dd19e28f978258025f7d9ed':
  Fix download of non-smart-forwarded attachments
This commit is contained in:
Marc Blank 2011-03-09 16:17:33 -08:00 committed by Android Git Automerger
commit 225a3ea0b6
1 changed files with 1 additions and 1 deletions

View File

@ -947,7 +947,7 @@ public class MessageCompose extends Activity implements OnClickListener, OnFocus
boolean hasUnloadedAttachments = false;
for (Attachment attachment : attachments) {
if (attachment.mContentUri == null &&
((attachment.mFlags & Attachment.FLAG_SMART_FORWARD) != 0)) {
((attachment.mFlags & Attachment.FLAG_SMART_FORWARD) == 0)) {
attachment.mFlags |= Attachment.FLAG_DOWNLOAD_FORWARD;
hasUnloadedAttachments = true;
if (Email.DEBUG){