diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-10-29 14:58:09 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-29 14:58:09 +0900 |
| commit | f2eda53a8bb47b693f10c79d35349ee3d76b8dca (patch) | |
| tree | 731e6455fc154f680d0838d36cbf7ba638398b3b /Jellyfin.Api/Controllers | |
| parent | 9e9431d829d26ba598ca0e5cf42b68a30433183c (diff) | |
| parent | 96071ef30d422001d474c749502f44e1ef7641ff (diff) | |
Merge pull request #4388 from crobibero/sneaky-sneaky
Add missing slashes in ffmpeg argument.
Diffstat (limited to 'Jellyfin.Api/Controllers')
| -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..d7bcf79c1 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( |
