aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/DynamicHlsController.cs
diff options
context:
space:
mode:
authorDominik <git@secnd.me>2022-11-14 14:39:08 +0100
committerDominik <git@secnd.me>2022-11-14 14:39:08 +0100
commit9f4f76b0ab0f3c3e0d7833d37b28f9915cff0549 (patch)
tree98d995749f0c73218a9c37eb050bbdc97d80b6e4 /Jellyfin.Api/Controllers/DynamicHlsController.cs
parentc2c182d099e8f5d77d43af76d7098848ab74c86c (diff)
Remove segment wrapping
Diffstat (limited to 'Jellyfin.Api/Controllers/DynamicHlsController.cs')
-rw-r--r--Jellyfin.Api/Controllers/DynamicHlsController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/DynamicHlsController.cs b/Jellyfin.Api/Controllers/DynamicHlsController.cs
index b86f62cf8..556057a0f 100644
--- a/Jellyfin.Api/Controllers/DynamicHlsController.cs
+++ b/Jellyfin.Api/Controllers/DynamicHlsController.cs
@@ -1686,7 +1686,7 @@ namespace Jellyfin.Api.Controllers
_logger.LogDebug("Using throttling and segment deletion, keeping {0} segments", segmentCount);
- return string.Format(CultureInfo.InvariantCulture, "-hls_list_size {0} -segment_wrap {0} -hls_flags delete_segments", segmentCount.ToString(CultureInfo.InvariantCulture));
+ return string.Format(CultureInfo.InvariantCulture, "-hls_list_size {0} -hls_flags delete_segments", segmentCount.ToString(CultureInfo.InvariantCulture));
}
else
{