Fix JSON responses from micropub endpoint

This commit is contained in:
2024-02-24 08:54:44 +11:00
parent 2c11fda9ce
commit c57cb62917
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ end
require "adamantium/middleware/header_fix"
use Adamantium::Middleware::HeaderFix do |headers, env|
unless headers["Content-Type"]&.include? "xml"
unless headers["Content-Type"]&.downcase&.include?("xml") || headers["Content-Type"]&.downcase&.include?("json")
headers["Content-Type"] = "text/html; charset=utf-8"
end
end