From 1e794c1832275f506ca35581176c33e0fdde1651 Mon Sep 17 00:00:00 2001 From: Patrick Reimers Date: Wed, 20 Sep 2023 19:05:55 +0200 Subject: [PATCH] feat: Use SSL links in RSS Build RSS with https links instead of http links. Fixes #276 --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 06360b2..819d22e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -72,7 +72,7 @@ gulp.task('generate-xml', gulp.series('validate-events', function () { xml.push(""); xml.push(""); xml.push("Hackergarten Events"); - xml.push("http://hackergarten.net"); + xml.push("https://hackergarten.net"); xml.push("en-en"); for (var i = 0; i < events.length; i++) { var event = events[i]; @@ -88,7 +88,7 @@ gulp.task('generate-xml', gulp.series('validate-events', function () { } xml.push(""); xml.push("" + escapeHTML("Hackergarten " + event.title) + ""); - xml.push("http://hackergarten.net/#event-" + hash + ""); + xml.push("https://hackergarten.net/#event-" + hash + ""); xml.push("" + hash + ""); xml.push("\n"); }