From 1d165e6a7eb681899dfbcc84d8cd800662c43dcb Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 7 Oct 2024 17:10:54 -0700 Subject: [PATCH] chore: concert links for artists without pages --- config/collections/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'])