mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Simplify escaping patterns
This commit is contained in:
parent
45c6e5678c
commit
61ebab80f0
1 changed files with 2 additions and 1 deletions
|
@ -80,6 +80,7 @@ import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.Semaphore;
|
import java.util.concurrent.Semaphore;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
import javax.mail.Address;
|
import javax.mail.Address;
|
||||||
import javax.mail.FetchProfile;
|
import javax.mail.FetchProfile;
|
||||||
|
@ -848,7 +849,7 @@ class Core {
|
||||||
Map<String, List<EntityFolder>> parentFolders = new HashMap<>();
|
Map<String, List<EntityFolder>> parentFolders = new HashMap<>();
|
||||||
for (Folder ifolder : ifolders) {
|
for (Folder ifolder : ifolders) {
|
||||||
String fullName = ifolder.getFullName();
|
String fullName = ifolder.getFullName();
|
||||||
String[] name = fullName.split("[" + separator + "]");
|
String[] name = fullName.split(Pattern.quote(Character.toString(separator)));
|
||||||
String childName = name[name.length - 1];
|
String childName = name[name.length - 1];
|
||||||
boolean subscribed = subscription.contains(fullName);
|
boolean subscribed = subscription.contains(fullName);
|
||||||
String[] attr = ((IMAPFolder) ifolder).getAttributes();
|
String[] attr = ((IMAPFolder) ifolder).getAttributes();
|
||||||
|
|
Loading…
Reference in a new issue