fix: bad reference
This commit is contained in:
parent
a8ef3fcdd4
commit
06b4b7f247
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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": {
|
||||
|
|
Reference in a new issue