From f52b5f883521e13d1e762defdac45c33216f0e95 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 18 Oct 2024 15:18:30 +0530 Subject: [PATCH] Disable Open Library as the site is down Hopefully it's temporary otherwise the plugin will have to be removed --- src/calibre/ebooks/metadata/sources/openlibrary.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/ebooks/metadata/sources/openlibrary.py b/src/calibre/ebooks/metadata/sources/openlibrary.py index 2990cc58f9..93bde76edd 100644 --- a/src/calibre/ebooks/metadata/sources/openlibrary.py +++ b/src/calibre/ebooks/metadata/sources/openlibrary.py @@ -12,7 +12,7 @@ from calibre.ebooks.metadata.sources.base import Source class OpenLibrary(Source): name = 'Open Library' - version = (1, 0, 0) + version = (1, 0, 1) minimum_calibre_version = (2, 80, 0) description = _('Downloads covers from The Open Library') @@ -22,6 +22,7 @@ class OpenLibrary(Source): def download_cover(self, log, result_queue, abort, title=None, authors=None, identifiers={}, timeout=30, get_best_cover=False): + return # site is currently down and timing out leading to slow metadata retrieval if 'isbn' not in identifiers: return isbn = identifiers['isbn']