From 76dcd8f0f7ccabd59199fc5eddbe012d8d463b18 Mon Sep 17 00:00:00 2001 From: Zeedif Date: Fri, 10 Apr 2026 10:29:25 -0600 Subject: [PATCH] OPDS: support non-standard and legacy link relations (#126) --- opds.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/opds.js b/opds.js index 7d92fc6..53d5c00 100644 --- a/opds.js +++ b/opds.js @@ -17,11 +17,13 @@ export const REL = { GROUP: 'http://opds-spec.org/group', COVER: [ 'http://opds-spec.org/image', - 'http://opds-spec.org/cover', + 'http://opds-spec.org/cover', // ManyBooks legacy, not in spec + 'x-stanza-cover-image', // Lexcycle Stanza legacy ], THUMBNAIL: [ 'http://opds-spec.org/image/thumbnail', - 'http://opds-spec.org/thumbnail', + 'http://opds-spec.org/thumbnail', // ManyBooks legacy, not in spec + 'x-stanza-cover-image-thumbnail', // Lexcycle Stanza legacy ], }