diff --git a/Cargo.toml b/Cargo.toml index 539b04b..033dab7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "upnp-client" -version = "0.1.1" +version = "0.1.2" edition = "2021" repository = "https://github.com/tsirysndr/upnp-client-rs" license = "MIT" diff --git a/src/media_renderer.rs b/src/media_renderer.rs index f47e2e2..f6613ee 100644 --- a/src/media_renderer.rs +++ b/src/media_renderer.rs @@ -86,7 +86,7 @@ impl MediaRendererClient { self.device_client .call_action("AVTransport", "Seek", params) .await?; - todo!() + Ok(()) } pub async fn stop(&self) -> Result<(), Error> {