Replaced application/rss+xml content-type for the feeds with application/xml (for browser compatibility)

This commit is contained in:
Fabio Manganiello 2023-01-20 20:07:39 +01:00
parent 0824115bf2
commit 0600912916
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ def rss_route():
)
for _, page in pages
]),
), mimetype='application/rss+xml')
), mimetype='application/xml')
# vim:sw=4:ts=4:et: