chore: change default comet scraping url

This commit is contained in:
g0ldyy
2026-01-09 22:50:11 +01:00
parent 72bb8859a7
commit 613fdeb3d9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -142,7 +142,7 @@ MAGNET_RESOLVE_TIMEOUT=60 # Max time to resolve a magnet link (seconds)
# Multi-Instance Scraping Support:
# - Single URL: Use a simple string for one instance (default behavior)
# - Multiple URLs: Use JSON array format for multiple instances
# - Example single: COMET_URL=https://comet.elfhosted.com
# - Example single: COMET_URL=https://comet.feels.legal
# - Example multi: COMET_URL='["https://comet1.example.com", "https://comet2.example.com"]'
#
# Scraper Context Modes:
@@ -161,7 +161,7 @@ MAGNET_RESOLVE_TIMEOUT=60 # Max time to resolve a magnet link (seconds)
# SCRAPE_PROWLARR=background # Prowlarr for background scraping only
SCRAPE_COMET=False
COMET_URL=https://comet.elfhosted.com
COMET_URL=https://comet.feels.legal
# Multi-instance example:
# COMET_URL='["https://comet1.example.com", "https://comet2.example.com"]'
+1 -1
View File
@@ -70,7 +70,7 @@ class AppSettings(BaseSettings):
CATALOG_TIMEOUT: Optional[int] = 30
DOWNLOAD_TORRENT_FILES: Optional[bool] = False
SCRAPE_COMET: Union[bool, str] = False
COMET_URL: Union[str, List[str]] = "https://comet.elfhosted.com"
COMET_URL: Union[str, List[str]] = "https://comet.feels.legal"
SCRAPE_NYAA: Union[bool, str] = False
NYAA_ANIME_ONLY: Optional[bool] = True
NYAA_MAX_CONCURRENT_PAGES: Optional[int] = 5