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

Unverified Commit 75bf9013 authored by cketti's avatar cketti Committed by GitHub
Browse files

Merge pull request #5079 from k9mail/GH-5063_folder_not_found

Treat FolderNotFoundException as permanent error
parents 938a2654 7ae88bb6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ public class FolderNotFoundException extends MessagingException {


    public FolderNotFoundException(String folderServerId) {
        super("Folder not found: " + folderServerId);
        super("Folder not found: " + folderServerId, true);
        this.folderServerId = folderServerId;
    }