From e4313067b6b1d7f951ae00117366435662c9f0f5 Mon Sep 17 00:00:00 2001 From: Koji Arai Date: Tue, 1 Oct 2013 07:53:08 +0900 Subject: [PATCH] Don't performSend() on onSave(). --- src/com/fsck/k9/activity/MessageCompose.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/fsck/k9/activity/MessageCompose.java b/src/com/fsck/k9/activity/MessageCompose.java index 059283b65..169878999 100644 --- a/src/com/fsck/k9/activity/MessageCompose.java +++ b/src/com/fsck/k9/activity/MessageCompose.java @@ -1917,7 +1917,7 @@ public class MessageCompose extends K9Activity implements OnClickListener, mWaitingForAttachments = WaitingAction.SAVE; showWaitingForAttachmentDialog(); } else { - performSend(); + performSave(); } }