From cd2be92dd440db966a0675d61a3a16d0826459f0 Mon Sep 17 00:00:00 2001 From: Polish Hammer Date: Tue, 14 Jul 2026 14:33:42 +0200 Subject: [PATCH] fix --- conjurer_librarian/scrape_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conjurer_librarian/scrape_bot.py b/conjurer_librarian/scrape_bot.py index cd7fdef..6704a0d 100644 --- a/conjurer_librarian/scrape_bot.py +++ b/conjurer_librarian/scrape_bot.py @@ -40,7 +40,7 @@ def load_ndb_to_q(logger): key = next(iter(ndb_database)) _ = ndb_database.pop(key) logger.info(key) - url = f"https://sci-hub.se/{key}" + url = f"https://sci-hub.red/{key}" WORK_Q.put([key, url, False]) except StopIteration: break