tsirysndr / upnp-client-rs

This is a UPnP client library for Rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Browse directories

takov751 opened this issue · comments

Hello there great project!

I am trying to browse files on a DLNA service and given this snippet

...
let device_client = DeviceClient::new(&device.location).expect("REASON").connect().await;
    let media_server_client = MediaServerClient::new(device_client.unwrap());
    let results = media_server_client
        .browse("1$4", "BrowseDirectChildren")
        .await.unwrap();
        println!("{:#?}", results);
...

When i browse 0,64,1,2,3 it does answers back as it should be, but when $ sign is in the id it's just won't. Am I missing something?

Well it was network issue :')