mirror of
https://github.com/YGGverse/aquatic-crawler.git
synced 2026-03-31 09:05:33 +00:00
update only_filesafter torrent init to prevent librqbit error warning on empty list defined
This commit is contained in:
parent
21933b454c
commit
320e63a2fb
1 changed files with 1 additions and 5 deletions
|
|
@ -110,15 +110,11 @@ async fn main() -> Result<()> {
|
||||||
},
|
},
|
||||||
)),
|
)),
|
||||||
Some(AddTorrentOptions {
|
Some(AddTorrentOptions {
|
||||||
paused: true, // continue after `only_files` init
|
paused: true, // continue after `only_files` update
|
||||||
overwrite: true,
|
overwrite: true,
|
||||||
disable_trackers: config.tracker.is_empty(),
|
disable_trackers: config.tracker.is_empty(),
|
||||||
initial_peers: config.initial_peer.clone(),
|
initial_peers: config.initial_peer.clone(),
|
||||||
list_only: false,
|
list_only: false,
|
||||||
// it is important to blacklist all files preload until initiation
|
|
||||||
only_files: Some(Vec::with_capacity(
|
|
||||||
config.preload_max_filecount.unwrap_or_default(),
|
|
||||||
)),
|
|
||||||
// the destination folder to preload files match `preload_regex`
|
// the destination folder to preload files match `preload_regex`
|
||||||
// * e.g. images for audio albums
|
// * e.g. images for audio albums
|
||||||
output_folder: preload
|
output_folder: preload
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue