From 8e5bb024c9c7114b86f4cad839bd813507d671df Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Tue, 22 Jul 2025 09:39:29 +0300 Subject: [PATCH] fix incorrect archiving --- config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 656c7ad..dcc650f 100644 --- a/config.py +++ b/config.py @@ -22,13 +22,14 @@ exclude_names = { USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0 Safari/537.36" -BASE_URL = "https://artistgrid.cx" +BASE_URL = "https://sheets.artistgrid.cx" ARCHIVE_URLS = [ f"{BASE_URL}/", f"{BASE_URL}/artists.html", f"{BASE_URL}/artists.csv", f"{BASE_URL}/artists.xlsx", + f"https://artistgrid.cx", ] DISCORD_WEBHOOK_URL = os.getenv("DISCORD_WEBHOOK_URL")