浏览代码

Add missing slashes in ffmpeg argument.

crobibero 4 年之前
父节点
当前提交
c0383ba07d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Jellyfin.Api/Controllers/VideoHlsController.cs

+ 1 - 1
Jellyfin.Api/Controllers/VideoHlsController.cs

@@ -371,7 +371,7 @@ namespace Jellyfin.Api.Controllers
 
 
             var baseUrlParam = string.Format(
             var baseUrlParam = string.Format(
                 CultureInfo.InvariantCulture,
                 CultureInfo.InvariantCulture,
-                "\"hls{0}\"",
+                "\"hls/{0}\"/",
                 Path.GetFileNameWithoutExtension(outputPath));
                 Path.GetFileNameWithoutExtension(outputPath));
 
 
             return string.Format(
             return string.Format(