Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bdf21431 authored by cketti's avatar cketti Committed by GitHub
Browse files

Merge pull request #2062 from philipwhiuk/stopOutboxFlagSyncAttempt

Stop trying to process flags on messages in the outbox
parents fb1de945 d0511c67
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2138,7 +2138,7 @@ public class MessagingController {
    private void processPendingSetFlag(PendingCommand command, Account account) throws MessagingException {
        String folder = command.arguments[0];

        if (account.getErrorFolderName().equals(folder)) {
        if (account.getErrorFolderName().equals(folder) || account.getOutboxFolderName().equals(folder)) {
            return;
        }

@@ -2180,7 +2180,7 @@ public class MessagingController {
        String folder = command.arguments[0];
        String uid = command.arguments[1];

        if (account.getErrorFolderName().equals(folder)) {
        if (account.getErrorFolderName().equals(folder) || account.getOutboxFolderName().equals(folder)) {
            return;
        }
        if (K9.DEBUG)