diff --git a/config.example.toml b/config.example.toml index 661c747c..ef42c146 100644 --- a/config.example.toml +++ b/config.example.toml @@ -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 diff --git a/qBitrr/gen_config.py b/qBitrr/gen_config.py index 3879d4c7..f6439042 100755 --- a/qBitrr/gen_config.py +++ b/qBitrr/gen_config.py @@ -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)