fix: url encoding

This commit is contained in:
Cory Dransfeldt 2024-03-17 14:21:46 -07:00
parent 283a15d083
commit 2bf1fbeaee
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -29,7 +29,7 @@ export const img = async (
filenameFormat: (id, src, width, format, options) => {
const extension = path.extname(src);
const name = path.basename(src, extension);
return `${name}-${width}w.${format}`;
return `${encodeURIComponent(name)}-${width}w.${format}`;
},
});

View file

@ -14,8 +14,8 @@ export default async function () {
artist: album['artist']['name'],
plays: album['playcount'],
rank: album['@attr']['rank'],
image: `https://cdn.coryd.dev/albums/${removeAccents(album['artist']['name']).replace(/\s+/g, '-').toLowerCase()}-${removeAccents(album['name'].replace(/[:\/\\,'']+/g
, '').replace(/\s+/g, '-').toLowerCase())}.jpg`,
image: `https://cdn.coryd.dev/albums/${encodeURIComponent(removeAccents(album['artist']['name']).replace(/\s+/g, '-').toLowerCase())}-${encodeURIComponent(removeAccents(album['name'].replace(/[:\/\\,'']+/g
, '').replace(/\s+/g, '-').toLowerCase()))}.jpg`,
url: album['mbid']
? `https://musicbrainz.org/album/${album['mbid']}`
: `https://musicbrainz.org/taglookup/index?tag-lookup.artist=${album['artist'][

View file

@ -23,7 +23,7 @@ export default async function () {
title: artist['name'],
plays: artist['playcount'],
rank: artist['@attr']['rank'],
image: `https://cdn.coryd.dev/artists/${removeAccents(artist['name']).replace(/\s+/g, '-').toLowerCase()}.jpg`,
image: `https://cdn.coryd.dev/artists/${encodeURIComponent(removeAccents(artist['name']).replace(/\s+/g, '-').toLowerCase())}.jpg`,
url: mbid
? `https://musicbrainz.org/artist/${mbid}`
: `https://musicbrainz.org/search?query=${artist['name'].replace(