mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Fix getShares sort order
This commit is contained in:
parent
6c05fcb699
commit
ef4765c768
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ import (
|
||||||
|
|
||||||
func (api *Router) GetShares(r *http.Request) (*responses.Subsonic, error) {
|
func (api *Router) GetShares(r *http.Request) (*responses.Subsonic, error) {
|
||||||
repo := api.share.NewRepository(r.Context()).(model.ShareRepository)
|
repo := api.share.NewRepository(r.Context()).(model.ShareRepository)
|
||||||
shares, err := repo.GetAll()
|
shares, err := repo.GetAll(model.QueryOptions{Sort: "created_at desc"})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue