@@ -497,9 +500,12 @@ function interactionsApp() {
const authorUrl = item.author?.url || '';
if (source.includes('brid.gy/') && source.includes('/mastodon/')) return 'mastodon';
if (source.includes('brid.gy/') && source.includes('/bluesky/')) return 'bluesky';
+ if (source.includes('fed.brid.gy')) return 'activitypub';
if (authorUrl.includes('bsky.app')) return 'bluesky';
- if (authorUrl.includes('mstdn') || authorUrl.includes('mastodon') || authorUrl.includes('social.')) return 'mastodon';
- return null;
+ if (authorUrl.includes('mstdn') || authorUrl.includes('mastodon') || authorUrl.includes('social.') ||
+ authorUrl.includes('fosstodon.') || authorUrl.includes('hachyderm.') || authorUrl.includes('infosec.exchange') ||
+ authorUrl.includes('pleroma.') || authorUrl.includes('misskey.') || authorUrl.includes('pixelfed.')) return 'mastodon';
+ return 'webmention';
},
mergeAndDeduplicate(wmItems, convItems) {
diff --git a/likes.njk b/likes.njk
index e1978ad..ac001e8 100644
--- a/likes.njk
+++ b/likes.njk
@@ -14,7 +14,7 @@ permalink: "likes/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumbe
Likes
{% set sparklineSvg = collections.likes | postingFrequency %}
{% if sparklineSvg %}
- {{ sparklineSvg | safe }}
+ {{ sparklineSvg | safe }}
{% endif %}
diff --git a/notes.njk b/notes.njk
index 41824f7..01f9e89 100644
--- a/notes.njk
+++ b/notes.njk
@@ -14,7 +14,7 @@ permalink: "notes/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumbe
Notes
{% set sparklineSvg = collections.notes | postingFrequency %}
{% if sparklineSvg %}
- {{ sparklineSvg | safe }}
+ {{ sparklineSvg | safe }}
{% endif %}
diff --git a/photos.njk b/photos.njk
index 0b7f91a..e74919b 100644
--- a/photos.njk
+++ b/photos.njk
@@ -14,7 +14,7 @@ permalink: "photos/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumb
Photos
{% set sparklineSvg = collections.photos | postingFrequency %}
{% if sparklineSvg %}
- {{ sparklineSvg | safe }}
+ {{ sparklineSvg | safe }}
{% endif %}
diff --git a/replies.njk b/replies.njk
index ed35ca3..0717ee0 100644
--- a/replies.njk
+++ b/replies.njk
@@ -14,7 +14,7 @@ permalink: "replies/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum
Replies
{% set sparklineSvg = collections.replies | postingFrequency %}
{% if sparklineSvg %}
- {{ sparklineSvg | safe }}
+ {{ sparklineSvg | safe }}
{% endif %}
diff --git a/reposts.njk b/reposts.njk
index 2688e2b..07c6585 100644
--- a/reposts.njk
+++ b/reposts.njk
@@ -14,7 +14,7 @@ permalink: "reposts/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum
Reposts
{% set sparklineSvg = collections.reposts | postingFrequency %}
{% if sparklineSvg %}
- {{ sparklineSvg | safe }}
+ {{ sparklineSvg | safe }}
{% endif %}