diff --git a/config/filters/index.js b/config/filters/index.js index 32fbed98..573ebd91 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -108,7 +108,7 @@ export default { // links findPost: (url, posts) => { - if (!url || !posts) return null; + if (!url || !posts || !posts[url]?.toots?.[0]?.includes('https')) 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; diff --git a/package.json b/package.json index 82df872a..b2b9378a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "7.10.8", + "version": "7.10.9", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {