Skip to content

Commit

Permalink
Config notes update
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Nov 14, 2024
1 parent 2328823 commit 358f1fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ DoNotRemoveSlow = true
# Maximum allowed time for allowed stalled torrents in minutes (-1 = Disabled, 0 = Infinite)
StalledDelay = -1

# Re-search stalled torrents when StalledDelay is enabled
# Re-search stalled torrents when StalledDelay is enabled and you want to re-search before removing the stalled torrent
ReSearchStalled = false


Expand Down
7 changes: 6 additions & 1 deletion qBitrr/gen_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,12 @@ def _gen_default_torrent_table(category: str, cat_default: Table):
"StalledDelay",
-1,
)
_gen_default_line(torrent_table, "Re-search stalled torrents when StalledDelay is enabled", "ReSearchStalled", False)
_gen_default_line(
torrent_table,
"Re-search stalled torrents when StalledDelay is enabled and you want to re-search before removing the stalled torrent",
"ReSearchStalled",
False,
)
_gen_default_seeding_table(category, torrent_table)
_gen_default_tracker_tables(category, torrent_table)

Expand Down

0 comments on commit 358f1fe

Please sign in to comment.