chore: drop cdn crop
This commit is contained in:
parent
b934a0241f
commit
aeda732038
3 changed files with 4 additions and 8 deletions
|
@ -22,7 +22,7 @@ module.exports = async function () {
|
||||||
)
|
)
|
||||||
: `https://cdn.coryd.dev/albums/${album['name'].name
|
: `https://cdn.coryd.dev/albums/${album['name'].name
|
||||||
.replace(/\s+/g, '-')
|
.replace(/\s+/g, '-')
|
||||||
.toLowerCase()}.jpg?width=400&crop=500,500&crop_gravity=center&quality=100&sharpen=true`,
|
.toLowerCase()}.jpg`,
|
||||||
url: album['mbid']
|
url: album['mbid']
|
||||||
? `https://musicbrainz.org/album/${album['mbid']}`
|
? `https://musicbrainz.org/album/${album['mbid']}`
|
||||||
: `https://musicbrainz.org/search?query=${encodeURI(album['name'])}&type=release_group`,
|
: `https://musicbrainz.org/search?query=${encodeURI(album['name'])}&type=release_group`,
|
||||||
|
|
|
@ -14,9 +14,7 @@ module.exports = async function () {
|
||||||
plays: artist['playcount'],
|
plays: artist['playcount'],
|
||||||
rank: artist['@attr']['rank'],
|
rank: artist['@attr']['rank'],
|
||||||
image:
|
image:
|
||||||
`https://cdn.coryd.dev/artists/${artist['name']
|
`https://cdn.coryd.dev/artists/${artist['name'].replace(/\s+/g, '-').toLowerCase()}.jpg` ||
|
||||||
.replace(/\s+/g, '-')
|
|
||||||
.toLowerCase()}.jpg?width=400&crop=500,500&crop_gravity=center&quality=100&sharpen=true` ||
|
|
||||||
'https://cdn.coryd.dev/artists/missing-artist.jpg',
|
'https://cdn.coryd.dev/artists/missing-artist.jpg',
|
||||||
url: artist['mbid']
|
url: artist['mbid']
|
||||||
? `https://musicbrainz.org/artist/${artist['mbid']}`
|
? `https://musicbrainz.org/artist/${artist['mbid']}`
|
||||||
|
|
|
@ -51,8 +51,7 @@ module.exports = async function () {
|
||||||
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
|
`https://cdn.coryd.dev/tv/${matchedEpisode['name']
|
||||||
.replace(':', '')
|
.replace(':', '')
|
||||||
.replace(/\s+/g, '-')
|
.replace(/\s+/g, '-')
|
||||||
.toLowerCase()}.jpg?width=450&height=662&quality=100&sharpen=true` ||
|
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
||||||
'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
|
||||||
startingEpisode: matchedEpisode['episode'],
|
startingEpisode: matchedEpisode['episode'],
|
||||||
startingSeason: matchedEpisode['season'],
|
startingSeason: matchedEpisode['season'],
|
||||||
episode: episodeNumber,
|
episode: episodeNumber,
|
||||||
|
@ -70,8 +69,7 @@ module.exports = async function () {
|
||||||
`https://cdn.coryd.dev/tv/${episode['show']['title']
|
`https://cdn.coryd.dev/tv/${episode['show']['title']
|
||||||
.replace(':', '')
|
.replace(':', '')
|
||||||
.replace(/\s+/g, '-')
|
.replace(/\s+/g, '-')
|
||||||
.toLowerCase()}.jpg?width=450&height=662&quality=100&sharpen=true` ||
|
.toLowerCase()}.jpg` || 'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
||||||
'https://cdn.coryd.dev/tv/missing-tv.jpg',
|
|
||||||
episode: episodeNumber,
|
episode: episodeNumber,
|
||||||
season: seasonNumber,
|
season: seasonNumber,
|
||||||
type: 'tv',
|
type: 'tv',
|
||||||
|
|
Reference in a new issue