mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +00:00
Fix XML parsing error when using OPDS feeds
Using the OPDS feeds with MoonReader yielded the following error: "Error parsing XML: unbound prefix". This was due to a missing namespace in the feed.xml template. See https://github.com/janeczku/calibre-web/issues/1403 for more information.
This commit is contained in:
parent
4332f7a640
commit
22fae51c9d
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/terms/">
|
||||
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/terms/" xmlns:dcterms="http://purl.org/dc/terms/">
|
||||
<id>urn:uuid:2853dacf-ed79-42f5-8e8a-a7bb3d1ae6a2</id>
|
||||
<updated>{{ current_time }}</updated>
|
||||
<link rel="self"
|
||||
|
Loading…
Reference in New Issue
Block a user