Add charset to opds feed for read books

This commit is contained in:
OzzieIsaacs 2018-08-07 18:19:08 +02:00
parent fdabb804cf
commit 5ec9051f2e

View file

@ -1864,7 +1864,7 @@ def render_read_books(page, are_read, as_xml=False):
if as_xml: if as_xml:
xml = render_title_template('feed.xml', entries=entries, pagination=pagination) xml = render_title_template('feed.xml', entries=entries, pagination=pagination)
response = make_response(xml) response = make_response(xml)
response.headers["Content-Type"] = "application/xml" response.headers["Content-Type"] = "application/xml; charset=utf-8"
return response return response
else: else:
if are_read: if are_read: