Remove legacy opds settings from web page

This commit is contained in:
spfenwick
2026-05-01 22:00:15 +12:00
parent 2d97fd2a5a
commit 7f121defa8
2 changed files with 2 additions and 12 deletions
@@ -411,9 +411,8 @@ void OpdsBookBrowserActivity::downloadBook(const OpdsEntry& book, const OpdsAcqu
downloadTotal = 0;
requestUpdate(true);
std::string downloadUrl = (acquisition.href.rfind("http", 0) == 0)
? acquisition.href
: UrlUtils::buildUrl(server.url, acquisition.href);
std::string downloadUrl =
(acquisition.href.rfind("http", 0) == 0) ? acquisition.href : UrlUtils::buildUrl(server.url, acquisition.href);
std::string filename = "/" +
StringUtils::sanitizeFilename((book.author.empty() ? "" : book.author + " - ") + book.title) +
acquisition.fileExtension;