From e78894cc28e803a86e081f41e660cc7e18a978ac Mon Sep 17 00:00:00 2001 From: Ricardo Date: Thu, 5 Feb 2026 18:34:11 +0100 Subject: [PATCH] fix: match homepage WebSub topic URL with trailing slash The HTML self link produces https://rmendes.net/ (with slash) but hub was notified with https://rmendes.net (no slash). Hub treats these as different topics. Co-Authored-By: Claude Opus 4.5 --- eleventy.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eleventy.config.js b/eleventy.config.js index ef16a86..da5612b 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -421,7 +421,7 @@ export default function (eleventyConfig) { // WebSub hub notification — notify subscribers of feed updates const hubUrl = "https://websubhub.com/hub"; const feedUrls = [ - siteUrl, + `${siteUrl}/`, `${siteUrl}/feed.xml`, `${siteUrl}/feed.json`, ];