From d9c61d48b9a2c289637cceff94a26b82701b9d89 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 30 Mar 2022 13:45:05 +0530 Subject: [PATCH] ... --- src/calibre/scraper/simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/scraper/simple.py b/src/calibre/scraper/simple.py index 801b926c25..c1a55be55d 100644 --- a/src/calibre/scraper/simple.py +++ b/src/calibre/scraper/simple.py @@ -23,7 +23,7 @@ def canonicalize_qurl(qurl): return qurl -@lru_cache(maxsize=4) +@lru_cache(maxsize=None) def create_profile(cache_name='simple', allow_js=False): from calibre.utils.random_ua import random_common_chrome_user_agent ans = QWebEngineProfile(cache_name, QApplication.instance())