Add xmlns:content to feed schemas fixes #1535

This commit is contained in:
David Marzal 2021-08-05 07:58:12 +00:00 committed by Georg Krause
parent a4aaecef39
commit 02a8ce949c
2 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@ class PodcastRSSRenderer(renderers.JSONRenderer):
"version": "2.0", "version": "2.0",
"xmlns:atom": "http://www.w3.org/2005/Atom", "xmlns:atom": "http://www.w3.org/2005/Atom",
"xmlns:itunes": "http://www.itunes.com/dtds/podcast-1.0.dtd", "xmlns:itunes": "http://www.itunes.com/dtds/podcast-1.0.dtd",
"xmlns:content": "http://purl.org/rss/1.0/modules/content/",
"xmlns:media": "http://search.yahoo.com/mrss/", "xmlns:media": "http://search.yahoo.com/mrss/",
} }
final.update(data) final.update(data)

View File

@ -0,0 +1 @@
Add xmlns:content to feed schemas fixes #1535