From cff9772e147bcf31e19dd12def0691692ad663a5 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 22 Jul 2020 20:13:51 +0200 Subject: [PATCH] Fix build part 2 --- Jellyfin.Api/Helpers/StreamingHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) {