diff --git a/config/filters/index.js b/config/filters/index.js index 05ede053..cfeb738a 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -56,6 +56,8 @@ export default { return tagMap[url] || '' }, webmentionsByUrl: (webmentions, url) => { + if (!webmentions) return null; + const allowedTypes = ['mention-of', 'in-reply-to', 'like-of', 'repost-of'] const data = { 'like-of': [], @@ -103,6 +105,13 @@ export default { a.published > b.published ? 1 : b.published > a.published ? -1 : 0 ) + // delete empty keys + Object.keys(data).forEach((key) => { + if (data[key].length === 0) delete data[key] + }); + + if (!Object.keys(data).length) return null; + return data }, diff --git a/package.json b/package.json index 5ac68671..8a597c83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "4.1.0", + "version": "4.2.0", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_includes/partials/webmentions/container.liquid b/src/_includes/partials/webmentions/container.liquid index ef7450f9..8a911b4a 100644 --- a/src/_includes/partials/webmentions/container.liquid +++ b/src/_includes/partials/webmentions/container.liquid @@ -1,9 +1,9 @@ -{% if webmentions %} +{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %} +{% if mentions %}