fix: check for valid url to pass to web component
This commit is contained in:
parent
e6dab2a329
commit
d3ccfe17e0
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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": {
|
||||
|
|
Reference in a new issue