diff --git a/examples/torrent-add.rs b/examples/torrent-add.rs index d8e327a..843a068 100644 --- a/examples/torrent-add.rs +++ b/examples/torrent-add.rs @@ -18,7 +18,7 @@ async fn main() -> Result<()> { client = TransClient::new(&url); } let add: TorrentAddArgs = TorrentAddArgs { - filename: Some("https://releases.ubuntu.com/20.04/ubuntu-20.04-desktop-amd64.iso.torrent".to_string()), + filename: Some("https://releases.ubuntu.com/20.04/ubuntu-20.04.2.0-desktop-amd64.iso.torrent".to_string()), ..TorrentAddArgs::default() }; let res: RpcResponse = client.torrent_add(add).await?;