aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/VideoHlsController.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2021-04-17 09:27:58 +0100
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2021-04-17 09:27:58 +0100
commit80877aa945c5af9ffd6ca811d981ba417942ed9f (patch)
treefd387d13d001cacd83e52879cc3c321dd6c93e92 /Jellyfin.Api/Controllers/VideoHlsController.cs
parentb63f615fd4f92f40394d04c9ae764b35aadc000d (diff)
Cleaned up "value assigned is not used in any execution path"
Diffstat (limited to 'Jellyfin.Api/Controllers/VideoHlsController.cs')
-rw-r--r--Jellyfin.Api/Controllers/VideoHlsController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/VideoHlsController.cs b/Jellyfin.Api/Controllers/VideoHlsController.cs
index e95410d02..445bad69d 100644
--- a/Jellyfin.Api/Controllers/VideoHlsController.cs
+++ b/Jellyfin.Api/Controllers/VideoHlsController.cs
@@ -376,7 +376,7 @@ namespace Jellyfin.Api.Controllers
}
else if (string.Equals(segmentFormat, "mp4", StringComparison.OrdinalIgnoreCase))
{
- var outputFmp4HeaderArg = string.Empty;
+ string outputFmp4HeaderArg;
var isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
if (isWindows)
{