chore: concert links for artists without pages
This commit is contained in:
parent
4ee9ccccf8
commit
1d165e6a7e
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ export const processContent = (collection) => {
|
|||
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
|
||||
|
||||
// set unique concert urls
|
||||
if (item?.['type'] === 'concert') content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts`
|
||||
if (item?.['type'] === 'concert') if (item?.['type'] === 'concert') content['url'] = `${item['artistUrl'] ? item['artistUrl'] : BASE_URL + '/music/concerts'}?t=${DateTime.fromISO(item['date']).toMillis()}${item['artistUrl'] ? '#concerts' : ''}`
|
||||
|
||||
if (item?.['description']) {
|
||||
content['description'] = md.render(item['description'])
|
||||
|
|
Reference in a new issue