1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-07 23:17:35 +00:00

Update HttpAccept.Rss to include application/xml

This commit is contained in:
Mark McDowall 2016-05-10 15:18:27 -07:00
parent d3adb7ac40
commit e2d6d374ab

View file

@ -4,7 +4,7 @@ namespace NzbDrone.Common.Http
{ {
public sealed class HttpAccept public sealed class HttpAccept
{ {
public static readonly HttpAccept Rss = new HttpAccept("application/rss+xml, text/rss+xml, text/xml"); public static readonly HttpAccept Rss = new HttpAccept("application/rss+xml, text/rss+xml, application/xml, text/xml");
public static readonly HttpAccept Json = new HttpAccept("application/json"); public static readonly HttpAccept Json = new HttpAccept("application/json");
public static readonly HttpAccept Html = new HttpAccept("text/html"); public static readonly HttpAccept Html = new HttpAccept("text/html");