fix default contact list sorting behaviour in global search screen

pull/891/head
Ryan ZHAO 11 months ago
parent 497bfbe120
commit ed04c5153e

@ -96,8 +96,11 @@ class GlobalSearchViewController: BaseVC, LibSessionRespondingViewController, UI
}
}()
if title0 == "#" { return false }
return title0 < title1
if title0.isAlphabetic && title1.isAlphabetic {
return title0 < title1
}
return title1 == "#"
}
)
}()

Loading…
Cancel
Save