Add text/xml as a possible mime type for xml file uploads

This commit is contained in:
bbielsa 2021-11-03 19:57:00 -04:00 committed by Samantaz Fox
parent 9607fe03af
commit 8d47ec714e
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 1 additions and 1 deletions

View File

@ -818,7 +818,7 @@ post "/data_control" do |env|
end
end
when "import_youtube"
if type == "application/xml"
if type == "application/xml" || type == "text/xml"
subscriptions = XML.parse(body)
user.subscriptions += subscriptions.xpath_nodes(%q(//outline[@type="rss"])).map do |channel|
channel["xmlUrl"].match(/UC[a-zA-Z0-9_-]{22}/).not_nil![0]