nyanmisaka 4 년 전
부모
커밋
750eaa9d27
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Jellyfin.Api/Controllers/VideoHlsController.cs

+ 1 - 1
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;