1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-30 13:12:25 -05:00

Record permanent failures into K9mail-errors

This commit is contained in:
Daniel Applebaum 2009-11-13 13:52:09 +00:00
parent 27caf93e11
commit 4a2c94938a

View File

@ -1487,6 +1487,7 @@ public class MessagingController implements Runnable {
{ {
if (me.isPermanentFailure()) if (me.isPermanentFailure())
{ {
addErrorMessage(account, me);
Log.e(Email.LOG_TAG, "Failure of command '" + command + "' was permanent, removing command from queue"); Log.e(Email.LOG_TAG, "Failure of command '" + command + "' was permanent, removing command from queue");
localStore.removePendingCommand(processingCommand); localStore.removePendingCommand(processingCommand);
} }