浏览代码

fix(examples): properly load request path in streaming example

Lucas Nogueira 3 年之前
父节点
当前提交
5666c0bce8
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      examples/streaming/main.rs

+ 3 - 0
examples/streaming/main.rs

@@ -47,6 +47,9 @@ fn main() {
       let path = request.uri().replace("stream://localhost/", "");
       #[cfg(not(target_os = "windows"))]
       let path = request.uri().replace("stream://", "");
+      let path = percent_encoding::percent_decode(path.as_bytes())
+        .decode_utf8_lossy()
+        .to_string();
 
       if path != "example/test_video.mp4" {
         // return error 404 if it's not out video