Merge branch 'develop' of https://git.schle.nz/fabian/esmp3 into develop

This commit is contained in:
Fabian Schlenz 2022-08-18 13:25:01 +02:00
commit 1bb358c961
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ void Playlist::_examine_http_url(String url) {
} else if (ct.startsWith("audio/")) {
persistence = PERSIST_NONE;
_files.push_back({.filename=url, .title=url, .id="none"});
} else if (ct.startsWith("application/rss+xml")) {
} else if (ct.startsWith("application/rss+xml") || ct.startsWith("application/xml")) {
persistence = PERSIST_PERMANENTLY;
_parse_rss(http);
} else if (ct.startsWith("application/pls+xml")) {