mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Merge pull request #93 from mcrossman/master
Make feed sorting case-insensitive
This commit is contained in:
commit
c7a2c43287
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ pub async fn subscriptions(req: HttpRequest) -> HttpResponse {
|
|||
// Modify sub list based on action
|
||||
if action == "subscribe" && !sub_list.contains(&sub) {
|
||||
sub_list.push(sub.to_owned());
|
||||
sub_list.sort();
|
||||
sub_list.sort_by(|a, b| a.to_lowercase().cmp(&b.to_lowercase()));
|
||||
} else if action == "unsubscribe" {
|
||||
sub_list.retain(|s| s != &sub);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue