fix: unique concert share urls

This commit is contained in:
Cory Dransfeldt 2024-09-08 19:47:55 -07:00
parent a46cf7a455
commit 71210e6f22
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -111,7 +111,7 @@ export const processContent = (collection) => {
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() 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 // 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']) { if (item?.['description']) {
content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...` content['description'] = `${item['description'].split(' ').slice(0, 25).join(' ')}...`
} else if (item?.['notes']) { } else if (item?.['notes']) {

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.12", "version": "24.7.13",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.12", "version": "24.7.13",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.7.12", "version": "24.7.13",
"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": {