Consolidate exception catching in processSourceMessage into a single try/catch block.
Add error logging if we do have an exception.
This commit is contained in:
parent
674d6774b2
commit
e19f742678
1 changed files with 12 additions and 28 deletions
|
@ -1675,9 +1675,9 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||
private void processSourceMessage(Message message)
|
||||
{
|
||||
String action = getIntent().getAction();
|
||||
if (ACTION_REPLY.equals(action) || ACTION_REPLY_ALL.equals(action))
|
||||
{
|
||||
try
|
||||
{
|
||||
if (ACTION_REPLY.equals(action) || ACTION_REPLY_ALL.equals(action))
|
||||
{
|
||||
if (message.getSubject() != null)
|
||||
{
|
||||
|
@ -1821,17 +1821,7 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||
}
|
||||
}
|
||||
}
|
||||
catch (MessagingException me)
|
||||
{
|
||||
/*
|
||||
* This really should not happen at this point but if it does it's okay.
|
||||
* The user can continue composing their message.
|
||||
*/
|
||||
}
|
||||
}
|
||||
else if (ACTION_FORWARD.equals(action))
|
||||
{
|
||||
try
|
||||
{
|
||||
if (message.getSubject() != null && !message.getSubject().toLowerCase().startsWith("fwd:"))
|
||||
{
|
||||
|
@ -1892,17 +1882,7 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||
}
|
||||
}
|
||||
}
|
||||
catch (MessagingException me)
|
||||
{
|
||||
/*
|
||||
* This really should not happen at this point but if it does it's okay.
|
||||
* The user can continue composing their message.
|
||||
*/
|
||||
}
|
||||
}
|
||||
else if (ACTION_EDIT_DRAFT.equals(action))
|
||||
{
|
||||
try
|
||||
{
|
||||
mDraftUid = message.getUid();
|
||||
mSubjectView.setText(message.getSubject());
|
||||
|
@ -2039,10 +2019,14 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (MessagingException me)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
/**
|
||||
* Let the user continue composing their message even if we have a problem processing
|
||||
* the source message. Log it as an error, though.
|
||||
*/
|
||||
Log.e(K9.LOG_TAG, "Error while processing source message: ", me);
|
||||
}
|
||||
mSourceMessageProcessed = true;
|
||||
mDraftNeedsSaving = false;
|
||||
|
|
Loading…
Reference in a new issue