diff options
| author | nyanmisaka <nst799610810@gmail.com> | 2020-11-14 18:30:20 +0800 |
|---|---|---|
| committer | nyanmisaka <nst799610810@gmail.com> | 2020-11-14 18:30:20 +0800 |
| commit | 750eaa9d276fda77512ec30c09d20371174aa13a (patch) | |
| tree | 530f22e16b68d14445a0c3317a687adfa9ad002b | |
| parent | 06670351ae6be1d3c47a25fe14b2f253cc6ab3e7 (diff) | |
fix ci
| -rw-r--r-- | Jellyfin.Api/Controllers/VideoHlsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/VideoHlsController.cs b/Jellyfin.Api/Controllers/VideoHlsController.cs index 93bb3a903..1ced08617 100644 --- a/Jellyfin.Api/Controllers/VideoHlsController.cs +++ b/Jellyfin.Api/Controllers/VideoHlsController.cs @@ -448,7 +448,7 @@ namespace Jellyfin.Api.Controllers || string.Equals(state.MediaSource.Container, "hls", StringComparison.OrdinalIgnoreCase))) { bitStreamArgs = _encodingHelper.GetBitStreamArgs(state.AudioStream); - bitStreamArgs = string.IsNullOrEmpty(bitStreamArgs) ? string.Empty : " " + bitStreamArgs;; + bitStreamArgs = string.IsNullOrEmpty(bitStreamArgs) ? string.Empty : " " + bitStreamArgs; } return "-acodec copy -strict -2" + bitStreamArgs; |
