remove reject_torrents_on_url_error and follow_redirects setting from configuration files

This commit is contained in:
maxid
2025-12-29 00:04:48 +01:00
parent c2724659d9
commit 1f53f51be7
4 changed files with 0 additions and 7 deletions

View File

@@ -75,7 +75,6 @@ Here's a complete example of the indexers section in your `config.toml`:
enabled = true
url = "http://prowlarr:9696"
api_key = "your_prowlarr_api_key"
reject_torrents_on_url_error = true
timeout_seconds = 60
[indexers.jackett]

View File

@@ -119,9 +119,7 @@ base_path = "/api"
enabled = false
url = "http://localhost:9696"
api_key = ""
reject_torrents_on_url_error = true
timeout_seconds = 60
follow_redirects = false
# Jackett settings
[indexers.jackett]

View File

@@ -119,9 +119,7 @@ base_path = "/api"
enabled = false
url = "http://localhost:9696"
api_key = ""
reject_torrents_on_url_error = true
timeout_seconds = 60
follow_redirects = false
# Jackett settings
[indexers.jackett]

View File

@@ -5,9 +5,7 @@ class ProwlarrConfig(BaseSettings):
enabled: bool = False
api_key: str = ""
url: str = "http://localhost:9696"
reject_torrents_on_url_error: bool = True
timeout_seconds: int = 60
follow_redirects: bool = False
class JackettConfig(BaseSettings):