SEO.Sitemaps icon indicating copy to clipboard operation
SEO.Sitemaps copied to clipboard

Encoding Issue for sitemapindex.xml

Open BjarneWittlieb opened this issue 2 years ago • 0 comments

The SitemapIndex Controller does not specify an encoding and when visiting the sitemapindex in google chrome, a 500 response is generated.

Line 64 in GetaSitemapIndexController should be adjusted as follows: return new FileContentResult(sitemapIndexData, "text/xml"); => return new FileContentResult(sitemapIndexData, "text/xml; charset=utf-8");

BjarneWittlieb avatar Sep 22 '22 09:09 BjarneWittlieb