Torznab: change content type for t=caps to xml only

This commit is contained in:
kaso17 2017-01-16 16:10:21 +01:00
parent 3a40e73d43
commit 716fe0e6b6
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ namespace Jackett.Controllers
{
return new HttpResponseMessage()
{
Content = new StringContent(indexer.TorznabCaps.ToXml(), Encoding.UTF8, "application/rss+xml")
Content = new StringContent(indexer.TorznabCaps.ToXml(), Encoding.UTF8, "application/xml")
};
}