From b2d43ef94176a445bbb40cc24efa39540c553290 Mon Sep 17 00:00:00 2001 From: Nick Zana Date: Sun, 14 Mar 2021 12:36:56 -0400 Subject: [PATCH] Replace outdated Ubuntu 20.04 with 20.04.2.0. --- examples/torrent-add.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?;