From 34888c51818e64d21abb45a044e669f07208c846 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 6 May 2026 18:30:46 -0400 Subject: [PATCH] =?UTF-8?q?fix(server/m7-cover-sources):=20forward-fix=20C?= =?UTF-8?q?I=20=E2=80=94=20last=20unused=20r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Missed FetchArtistArt_BothEmpty handler in the previous sweep — its body doesn't use r. Renamed to _. --- internal/coverart/provider_theaudiodb_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/coverart/provider_theaudiodb_test.go b/internal/coverart/provider_theaudiodb_test.go index 8fdc0838..edd8a8ae 100644 --- a/internal/coverart/provider_theaudiodb_test.go +++ b/internal/coverart/provider_theaudiodb_test.go @@ -206,7 +206,7 @@ func TestTheAudioDB_FetchArtistArt_ThumbOnly(t *testing.T) { } func TestTheAudioDB_FetchArtistArt_BothEmpty(t *testing.T) { - srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) { w.Header().Set("Content-Type", "application/json") _, _ = w.Write([]byte(`{"artists":[{"strArtistThumb":null,"strArtistFanart":null}]}`)) }))