From c282ef4a1d9c0f68a6fb68a3e639d42cc4124d75 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Thu, 5 Feb 2026 17:54:07 +0100 Subject: [PATCH] fix: notify WebSub hub about homepage URL too Subscribers discovering via HTML rel="self" subscribe to the homepage topic, not the feed URL. Must notify hub for all topic URLs so those subscriptions receive updates. Co-Authored-By: Claude Opus 4.5 --- eleventy.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eleventy.config.js b/eleventy.config.js index 6ee5416..ef16a86 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -421,6 +421,7 @@ export default function (eleventyConfig) { // WebSub hub notification — notify subscribers of feed updates const hubUrl = "https://websubhub.com/hub"; const feedUrls = [ + siteUrl, `${siteUrl}/feed.xml`, `${siteUrl}/feed.json`, ];