aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid <daullmer@gmail.com>2020-07-22 20:13:51 +0200
committerDavid <daullmer@gmail.com>2020-07-22 20:13:51 +0200
commitcff9772e147bcf31e19dd12def0691692ad663a5 (patch)
treebd6ea967a3a1e1c736a5a933fe3baa3ebd855a49
parent1cb20f91814cacdbb1866f42450cab9ae8000958 (diff)
Fix build part 2
-rw-r--r--Jellyfin.Api/Helpers/StreamingHelpers.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Helpers/StreamingHelpers.cs b/Jellyfin.Api/Helpers/StreamingHelpers.cs
index caa601cf3..0b18756d6 100644
--- a/Jellyfin.Api/Helpers/StreamingHelpers.cs
+++ b/Jellyfin.Api/Helpers/StreamingHelpers.cs
@@ -185,7 +185,7 @@ namespace Jellyfin.Api.Helpers
encodingHelper.AttachMediaSourceInfo(state, mediaSource, url);
- var containerInternal = Path.GetExtension(state.RequestedUrl);
+ string? containerInternal = Path.GetExtension(state.RequestedUrl);
if (string.IsNullOrEmpty(streamingRequest.Container))
{