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

Treat FolderNotFoundException as permanent error
This commit is contained in:
cketti 2021-01-05 18:30:31 +01:00 committed by GitHub
commit 75bf9013c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}