diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2021-02-22 21:00:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-22 21:00:34 -0500 |
| commit | c0c4aff8a642013ec406c065c8374aaad8b4ef65 (patch) | |
| tree | a3b861cbb472ddc7e72ed87df14e9e7a0481f7e0 /Jellyfin.Api/Helpers/StreamingHelpers.cs | |
| parent | da55462d92f645d20f63eab3d7ffc8e141497ac5 (diff) | |
| parent | b1fe28d0a6c1bbc67543fc1b5877a69f7958f8c5 (diff) | |
Merge pull request #5276 from Bond-009/minor12
Diffstat (limited to 'Jellyfin.Api/Helpers/StreamingHelpers.cs')
| -rw-r--r-- | Jellyfin.Api/Helpers/StreamingHelpers.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/StreamingHelpers.cs b/Jellyfin.Api/Helpers/StreamingHelpers.cs index 4957ee8b8..153ec3175 100644 --- a/Jellyfin.Api/Helpers/StreamingHelpers.cs +++ b/Jellyfin.Api/Helpers/StreamingHelpers.cs @@ -245,7 +245,7 @@ namespace Jellyfin.Api.Helpers var ext = string.IsNullOrWhiteSpace(state.OutputContainer) ? GetOutputFileExtension(state) - : ('.' + state.OutputContainer); + : ("." + state.OutputContainer); state.OutputFilePath = GetOutputFilePath(state, ext!, serverConfigurationManager, streamingRequest.DeviceId, streamingRequest.PlaySessionId); |
