chore: consistently reference ids

This commit is contained in:
Cory Dransfeldt 2024-08-24 08:37:05 -07:00
parent 7e1a55754b
commit c83aea01f8
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.6.6", "version": "22.7.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.6.6", "version": "22.7.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "22.7.0", "version": "22.7.1",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -66,7 +66,7 @@ const processMovies = (movies) => {
id: item['tmdb_id'], id: item['tmdb_id'],
type: 'movie', type: 'movie',
tags: item['tags'] ? item['tags'].split(',') : [], tags: item['tags'] ? item['tags'].split(',') : [],
artists: item['artists']?.[0]?.['name'] ? item['artists'].map(artist => { artists: item['artists']?.[0]?.['id'] ? item['artists'].map(artist => {
artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}` artist['url'] = `/music/artists/${sanitizeMediaString(artist['name'])}-${sanitizeMediaString(parseCountryField(artist['country']))}`
return artist return artist
}).sort((a, b) => a['name'].localeCompare(b['name'])) : null, }).sort((a, b) => a['name'].localeCompare(b['name'])) : null,