From 8980028694749d412a94c2b9bf26592d4f29f0b0 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 17 Oct 2019 13:33:05 +0200 Subject: [PATCH] fixed the rss feed linking to the wrong blog --- node/rss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/rss.js b/node/rss.js index 29bb2ab..da326af 100644 --- a/node/rss.js +++ b/node/rss.js @@ -61,7 +61,7 @@ function createFeed(callback) { let html = converter.makeHtml(content.toString()); feed.addItem({ title: post["name"], - link: "https://ellpeck.de/#blog-" + id, + link: "https://ellpeck.de/blog-" + id, description: post["summary"], content: html, date: date,