From adbfdc858edb09a72af3fe8d12b0811ffa5641e3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 4 Jun 2017 16:55:46 +0530 Subject: [PATCH] Add a note about why /legacy/get exists --- src/calibre/srv/legacy.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/srv/legacy.py b/src/calibre/srv/legacy.py index 191aa285b7..3cc75a792e 100644 --- a/src/calibre/srv/legacy.py +++ b/src/calibre/srv/legacy.py @@ -259,4 +259,6 @@ def stanza(ctx, rd, rest): @endpoint('/legacy/get/{what}/{book_id}/{library_id}/{+filename=""}', android_workaround=True) def legacy_get(ctx, rd, what, book_id, library_id, filename): + # See https://www.mobileread.com/forums/showthread.php?p=3531644 for why + # this is needed for Kobo browsers return get(ctx, rd, what, book_id, library_id)