Skip to content

Commit

Permalink
Update config defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Jun 26, 2024
1 parent 40e3028 commit 1c20f6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ DoNotRemoveSlow = true
AllowStalled = false

# Maximum allowed time for allowed stalled torrents
StalledDelay = 0
StalledDelay = -1


[Sonarr-TV.Torrent.SeedingMode]
Expand Down Expand Up @@ -421,7 +421,7 @@ DoNotRemoveSlow = true
AllowStalled = false

# Maximum allowed time for allowed stalled torrents
StalledDelay = 0
StalledDelay = -1


[Sonarr-Anime.Torrent.SeedingMode]
Expand Down Expand Up @@ -620,7 +620,7 @@ DoNotRemoveSlow = true
AllowStalled = false

# Maximum allowed time for allowed stalled torrents
StalledDelay = 0
StalledDelay = -1


[Radarr-1080.Torrent.SeedingMode]
Expand Down Expand Up @@ -832,7 +832,7 @@ DoNotRemoveSlow = true
AllowStalled = false

# Maximum allowed time for allowed stalled torrents
StalledDelay = 0
StalledDelay = -1


[Radarr-4K.Torrent.SeedingMode]
Expand Down
2 changes: 1 addition & 1 deletion qBitrr/gen_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def _gen_default_torrent_table(category: str, cat_default: Table):
_gen_default_line(torrent_table, "Ignore slow torrents.", "DoNotRemoveSlow", True)
_gen_default_line(torrent_table, "Allow stalled torrents", "AllowStalled", False)
_gen_default_line(
torrent_table, "Maximum allowed time for allowed stalled torrents", "StalledDelay", 0
torrent_table, "Maximum allowed time for allowed stalled torrents", "StalledDelay", -1
)
_gen_default_seeding_table(category, torrent_table)
_gen_default_tracker_tables(category, torrent_table)
Expand Down

0 comments on commit 1c20f6b

Please sign in to comment.