Fix: filter sort authors and series, authors page sort alphabetical #497

This commit is contained in:
advplyr 2022-04-24 17:15:41 -05:00
parent 21bdd9f9ec
commit 6e99cf6570
2 changed files with 4 additions and 3 deletions

View file

@ -533,7 +533,8 @@ class LibraryController {
})
}
})
res.json(Object.values(authors))
res.json(naturalSort(Object.values(authors)).asc(au => au.name))
}
async matchAll(req, res) {