chore: debug
This commit is contained in:
parent
2e5dc6efb8
commit
a0db37cf12
1 changed files with 6 additions and 2 deletions
|
@ -91,9 +91,13 @@ export default async (request) => {
|
||||||
throw new Error('Something went wrong with the MusicBrainz endpoint.');
|
throw new Error('Something went wrong with the MusicBrainz endpoint.');
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
return {}
|
return {
|
||||||
|
mbid: '',
|
||||||
|
genre: '',
|
||||||
|
image: `https://cdn.coryd.dev/artists/${sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()}.jpg`
|
||||||
|
}
|
||||||
});
|
});
|
||||||
const genre = genreRes['genres'].sort((a, b) => b.count - a.count)[0]?.['name'] || '';
|
const genre = genreRes['genres']?.sort((a, b) => b.count - a.count)[0]?.['name'] || '';
|
||||||
const artistObj = {
|
const artistObj = {
|
||||||
mbid,
|
mbid,
|
||||||
genre,
|
genre,
|
||||||
|
|
Reference in a new issue