From f00e6117ffdc3fd187007ecac21824aa5cd45234 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 1 Feb 2023 10:34:55 -0500 Subject: [PATCH] Invalidate artist cache (by changing cache key format) --- core/artwork/reader_artist.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/artwork/reader_artist.go b/core/artwork/reader_artist.go index 5b52ed18f..33079314f 100644 --- a/core/artwork/reader_artist.go +++ b/core/artwork/reader_artist.go @@ -64,7 +64,7 @@ func newArtistReader(ctx context.Context, artwork *artwork, artID model.ArtworkI func (a *artistReader) Key() string { hash := md5.Sum([]byte(conf.Server.Agents + conf.Server.Spotify.ID)) return fmt.Sprintf( - "%s.%x.%t", + "%s.%x.%t ", a.cacheKey.Key(), hash, conf.Server.EnableExternalServices,