Make folder sort case insensitive. Issue #2201
This commit is contained in:
parent
cddd5cebff
commit
b9ccd5aabb
@ -148,7 +148,7 @@ public final class Account: DisplayNameProvider, UnreadCountProvider, Container,
|
|||||||
|
|
||||||
public var sortedFolders: [Folder]? {
|
public var sortedFolders: [Folder]? {
|
||||||
if let folders = folders {
|
if let folders = folders {
|
||||||
return Array(folders).sorted(by: { $0.nameForDisplay < $1.nameForDisplay })
|
return Array(folders).sorted(by: { $0.nameForDisplay.caseInsensitiveCompare($1.nameForDisplay) == .orderedAscending })
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user