From 36a89e8fe77945e17b6f24a410f45a91b3497904 Mon Sep 17 00:00:00 2001 From: kowalcj0 Date: Fri, 20 Mar 2020 11:29:21 +0000 Subject: [PATCH] Support RSS feeds with application/xml MIME-type --- NEWS | 2 ++ src/playlist/plugins/RssPlaylistPlugin.cxx | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 71e2eb381..9f62c5140 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ ver 0.21.22 (not yet released) +* playlist + - rss: support MIME type application/xml ver 0.21.21 (2020/03/19) * configuration diff --git a/src/playlist/plugins/RssPlaylistPlugin.cxx b/src/playlist/plugins/RssPlaylistPlugin.cxx index 4761afd0c..ecf1c726b 100644 --- a/src/playlist/plugins/RssPlaylistPlugin.cxx +++ b/src/playlist/plugins/RssPlaylistPlugin.cxx @@ -162,6 +162,7 @@ static const char *const rss_suffixes[] = { static const char *const rss_mime_types[] = { "application/rss+xml", + "application/xml", "text/xml", nullptr };