mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Created dedicated artwork readers
This commit is contained in:
parent
c1c4645501
commit
92ddae4a65
10 changed files with 323 additions and 206 deletions
|
@ -51,12 +51,10 @@ const getCoverArtUrl = (record, size) => {
|
|||
}
|
||||
|
||||
// TODO Move this logic to server. `song` and `album` should have a CoverArtID
|
||||
const lastUpdate = Math.floor(Date.parse(record.updatedAt) / 1000)
|
||||
const id = record.id + '-' + Math.max(lastUpdate, 0).toString(16)
|
||||
if (record.album) {
|
||||
return baseUrl(url('getCoverArt', 'mf-' + id, options))
|
||||
return baseUrl(url('getCoverArt', 'mf-' + record.id, options))
|
||||
} else {
|
||||
return baseUrl(url('getCoverArt', 'al-' + id, options))
|
||||
return baseUrl(url('getCoverArt', 'al-' + record.id, options))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue