Watching works fine

This commit is contained in:
Igor Katson 2024-09-13 12:58:09 +01:00
parent a73f921c5f
commit dedee2ef08
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
5 changed files with 46 additions and 14 deletions

View file

@ -1207,6 +1207,10 @@ impl Session {
.context("error starting torrent")?;
}
if let Some(name) = managed_torrent.shared().info.name.as_ref() {
info!(?name, id, "added torrent");
}
Ok(AddTorrentResponse::Added(id, managed_torrent))
}