From 06b4b7f247f0db9c2657fa33faad7d48f7c85f9b Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 22 Feb 2024 13:12:09 -0800 Subject: [PATCH] fix: bad reference --- config/filters/index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index d10b887a..4196aec9 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -113,7 +113,7 @@ export default { if (!url || !posts) return null; const BASE_URL = 'https://social.lol/users/cory/statuses/' const STATUS_URL = 'https://social.lol/@cory/' - return posts[url]?.toots?.[0].replace(BASE_URL, STATUS_URL) || null; + return posts[url]?.toots?.[0]?.replace(BASE_URL, STATUS_URL) || null; }, absoluteUrl: (url, base) => { if (!base) base = metaData.url diff --git a/package.json b/package.json index 2853aa99..8bb01b88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "6.5.11", + "version": "6.5.12", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": {