From d88674fe4032e573bc08c3175d8caef2de664039 Mon Sep 17 00:00:00 2001 From: dreamer Date: Thu, 26 Mar 2026 14:37:19 +0100 Subject: [PATCH] tweak content_type --- code/handlers/RSShandler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/handlers/RSShandler.lua b/code/handlers/RSShandler.lua index d9fdf08..c08543b 100644 --- a/code/handlers/RSShandler.lua +++ b/code/handlers/RSShandler.lua @@ -17,7 +17,7 @@ local function RSShandler(self) self.latestpath = latest_path self.latestname = latest_name - return { content_type = "text/rss", layout = require "views.rss" } + return { content_type = "text/rss+xml", layout = require "views.rss" } end return RSShandler