We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ea86b commit bec1307Copy full SHA for bec1307
1 file changed
src/sink/imp.rs
@@ -167,7 +167,7 @@ impl MoqSink {
167
.await
168
.expect("failed to connect");
169
170
- let path = url.path().to_string();
+ let path = url.path().strip_prefix('/').unwrap().to_string();
171
172
let broadcast = moq_karp::BroadcastProducer::new(session, path).unwrap();
173
let media = moq_karp::cmaf::Import::new(broadcast);
0 commit comments