From 9f1794b97ee253811f5c77b5474236aee2ad9934 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Wed, 11 Sep 2024 00:18:37 +0000 Subject: [PATCH] Only refresh smart playlist when fetching first track (#3244) * Only refresh smart playlist when fetching first track * res -> w --- server/nativeapi/playlists.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/server/nativeapi/playlists.go b/server/nativeapi/playlists.go index 8f625aba1..09d8f8e16 100644 --- a/server/nativeapi/playlists.go +++ b/server/nativeapi/playlists.go @@ -22,14 +22,16 @@ type restHandler = func(rest.RepositoryConstructor, ...rest.Logger) http.Handler func getPlaylist(ds model.DataStore) http.HandlerFunc { // Add a middleware to capture the playlistId 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 { plsRepo := ds.Playlist(ctx) - plsId := chi.URLParam(req, "playlistId") - return plsRepo.Tracks(plsId, true) + plsId := chi.URLParam(r, "playlistId") + 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) } }