From 71210e6f22bc490323e99d8d34ef5a228c34b5a4 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 8 Sep 2024 19:47:55 -0700 Subject: [PATCH] fix: unique concert share urls --- config/collections/index.js | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index cccd8095..d254046f 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -111,7 +111,7 @@ export const processContent = (collection) => { if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() // link to artist concerts section if available - artistUrl is only present on concert objects here - if (item?.['artistUrl']) content['url'] = `${item['artistUrl']}#concerts` + if (item?.['artistUrl']) content['url'] = `${item['artistUrl']}?t=${DateTime.fromISO(item['date']).toMillis()}#concerts` if (item?.['description']) { content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...` } else if (item?.['notes']) { diff --git a/package-lock.json b/package-lock.json index ff60b1be..56b50d14 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.7.12", + "version": "24.7.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.7.12", + "version": "24.7.13", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index 323506c1..a9f7a252 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.7.12", + "version": "24.7.13", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": {