diff --git a/config/collections/index.js b/config/collections/index.js index c55c13b3..8bbab32e 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -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'])