Change Image cache key format
This commit is contained in:
parent
04eab5666a
commit
26a7adae5f
1 changed files with 1 additions and 1 deletions
|
|
@ -291,7 +291,7 @@ type artworkKey struct {
|
|||
}
|
||||
|
||||
func (k *artworkKey) Key() string {
|
||||
return fmt.Sprintf("%s.%d.%d.%d", k.artID.ID, k.size, k.artID.LastUpdate.UnixNano(), conf.Server.CoverJpegQuality)
|
||||
return fmt.Sprintf("%s.%d.%d", k.artID, k.size, conf.Server.CoverJpegQuality)
|
||||
}
|
||||
|
||||
func GetImageCache() cache.FileCache {
|
||||
|
|
|
|||
Loading…
Reference in a new issue