mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Only refresh smart playlist when fetching first track (#3244)
* Only refresh smart playlist when fetching first track * res -> w
This commit is contained in:
parent
e1762882e3
commit
9f1794b97e
1 changed files with 6 additions and 4 deletions
|
@ -22,14 +22,16 @@ type restHandler = func(rest.RepositoryConstructor, ...rest.Logger) http.Handler
|
||||||
func getPlaylist(ds model.DataStore) http.HandlerFunc {
|
func getPlaylist(ds model.DataStore) http.HandlerFunc {
|
||||||
// Add a middleware to capture the playlistId
|
// Add a middleware to capture the playlistId
|
||||||
wrapper := func(handler restHandler) http.HandlerFunc {
|
wrapper := func(handler restHandler) http.HandlerFunc {
|
||||||
return func(res http.ResponseWriter, req *http.Request) {
|
return func(w http.ResponseWriter, r *http.Request) {
|
||||||
constructor := func(ctx context.Context) rest.Repository {
|
constructor := func(ctx context.Context) rest.Repository {
|
||||||
plsRepo := ds.Playlist(ctx)
|
plsRepo := ds.Playlist(ctx)
|
||||||
plsId := chi.URLParam(req, "playlistId")
|
plsId := chi.URLParam(r, "playlistId")
|
||||||
return plsRepo.Tracks(plsId, true)
|
p := req.Params(r)
|
||||||
|
start := p.Int64Or("_start", 0)
|
||||||
|
return plsRepo.Tracks(plsId, start == 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
handler(constructor).ServeHTTP(res, req)
|
handler(constructor).ServeHTTP(w, r)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue