chore: additional fallback images
This commit is contained in:
parent
e8a00d070a
commit
7c3e71c0c9
1 changed files with 4 additions and 2 deletions
|
@ -1,8 +1,10 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
artist: (media) =>
|
artist: (media) =>
|
||||||
`https://cdn.coryd.dev/artists/${media.replace(/\s+/g, '-').toLowerCase()}.jpg`,
|
`https://cdn.coryd.dev/artists/${media.replace(/\s+/g, '-').toLowerCase()}.jpg` ||
|
||||||
|
'https://cdn.coryd.dev/artists/missing-artist.jpg',
|
||||||
tv: (episode) =>
|
tv: (episode) =>
|
||||||
`https://cdn.coryd.dev/tv/${episode.replace(':', '').replace(/\s+/g, '-').toLowerCase()}.jpg`,
|
`https://cdn.coryd.dev/tv/${episode.replace(':', '').replace(/\s+/g, '-').toLowerCase()}.jpg` ||
|
||||||
|
'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
||||||
cdn: (url, host, cdn) => {
|
cdn: (url, host, cdn) => {
|
||||||
return url.replace(host, cdn)
|
return url.replace(host, cdn)
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue