diff options
| author | crobibero <cody@robibe.ro> | 2020-10-28 20:23:39 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-10-28 20:23:39 -0600 |
| commit | c0383ba07d275daf3241c68e0aad5f493cff44cb (patch) | |
| tree | d39ce13caeaf96e072d741605511832e60358726 /Jellyfin.Api/Controllers/VideoHlsController.cs | |
| parent | 9e9431d829d26ba598ca0e5cf42b68a30433183c (diff) | |
Add missing slashes in ffmpeg argument.
Diffstat (limited to 'Jellyfin.Api/Controllers/VideoHlsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/VideoHlsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/VideoHlsController.cs b/Jellyfin.Api/Controllers/VideoHlsController.cs index 2afa878f4..c41116fa7 100644 --- a/Jellyfin.Api/Controllers/VideoHlsController.cs +++ b/Jellyfin.Api/Controllers/VideoHlsController.cs @@ -371,7 +371,7 @@ namespace Jellyfin.Api.Controllers var baseUrlParam = string.Format( CultureInfo.InvariantCulture, - "\"hls{0}\"", + "\"hls/{0}\"/", Path.GetFileNameWithoutExtension(outputPath)); return string.Format( |
