diff options
| author | James Harvey <44349936+jmshrv@users.noreply.github.com> | 2023-02-04 02:45:24 +0000 |
|---|---|---|
| committer | James Harvey <44349936+jmshrv@users.noreply.github.com> | 2023-02-04 02:45:24 +0000 |
| commit | 83ae6fcdb466b2bee17af07ac415f6e5892ff3c7 (patch) | |
| tree | db43bd66afc1fbaef33c9574dd2a82ea3f34f2a7 | |
| parent | a3f41bbc0cf2b2009005ef5bb1d449002ff7017c (diff) | |
Fix Braces for multi-line statements should not share line
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs index 21cfac00a..c335320a7 100644 --- a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs +++ b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs @@ -5788,7 +5788,8 @@ namespace MediaBrowser.Controller.MediaEncoding // Copy the movflags from GetProgressiveVideoFullCommandLine // See #9248 and the associated PR for why this is needed - var mp4ContainerNames = new HashSet<String> { + var mp4ContainerNames = new HashSet<String> + { "mp4", "m4a", "m4p", |
