mirror of https://github.com/ikatson/rqbit
Merge pull request #515 from angrynode/docs-overwrite
docs: AddTorrentOptions::overwrite required even with complete torrent
This commit is contained in:
commit
2f725e3db7
|
|
@ -251,6 +251,9 @@ pub struct AddTorrentOptions {
|
|||
pub only_files: Option<Vec<usize>>,
|
||||
/// Allow writing on top of existing files, including when resuming a torrent.
|
||||
/// You probably want to set it, however for safety it's not default.
|
||||
///
|
||||
/// Even when all the torrent pieces have been written, `overwrite` needs to
|
||||
/// be enabled in order to resume/seed the torrent.
|
||||
#[serde(default)]
|
||||
pub overwrite: bool,
|
||||
/// Only list the files in the torrent without starting it.
|
||||
|
|
|
|||
Loading…
Reference in New Issue