mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 15:43:28 +02:00
remove reject_torrents_on_url_error and follow_redirects setting from configuration files
This commit is contained in:
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user