chore: consistently reference ids
This commit is contained in:
parent
7e1a55754b
commit
c83aea01f8
3 changed files with 4 additions and 4 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Reference in a new issue