Invalidate artist cache (by changing cache key format)

This commit is contained in:
Deluan 2023-02-01 10:34:55 -05:00
parent d8e794317f
commit f00e6117ff
1 changed files with 1 additions and 1 deletions

View File

@ -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,