From e2d6d374abf9d387d5ca25238d6b28fdeeb745b9 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 10 May 2016 15:18:27 -0700 Subject: [PATCH] Update HttpAccept.Rss to include application/xml --- src/NzbDrone.Common/Http/HttpAccept.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/Http/HttpAccept.cs b/src/NzbDrone.Common/Http/HttpAccept.cs index 34b2644f6..d67ce3da0 100644 --- a/src/NzbDrone.Common/Http/HttpAccept.cs +++ b/src/NzbDrone.Common/Http/HttpAccept.cs @@ -4,7 +4,7 @@ namespace NzbDrone.Common.Http { 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 Html = new HttpAccept("text/html");