mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Return playlists sorted in getPlaylists
Subsonic endpoint
This commit is contained in:
parent
058e7e4374
commit
b6e30cd01f
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ func NewPlaylistsController(ds model.DataStore) *PlaylistsController {
|
|||
|
||||
func (c *PlaylistsController) GetPlaylists(w http.ResponseWriter, r *http.Request) (*responses.Subsonic, error) {
|
||||
ctx := r.Context()
|
||||
allPls, err := c.ds.Playlist(ctx).GetAll()
|
||||
allPls, err := c.ds.Playlist(ctx).GetAll(model.QueryOptions{Sort: "name"})
|
||||
if err != nil {
|
||||
log.Error(r, err)
|
||||
return nil, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue