diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-04-05 13:00:35 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-04-05 13:00:35 -0400 |
| commit | 80cfcf5643b50fd1acfdc82cae849948a39233b9 (patch) | |
| tree | 35a2a05085ae086aa0c206c4261bb2f112fd98a7 /MediaBrowser.Api/Playback/UniversalAudioService.cs | |
| parent | 86c06996b16ffa48a63fa364fade5c211be4f294 (diff) | |
Remove unnecessary casts and explicit array types
Diffstat (limited to 'MediaBrowser.Api/Playback/UniversalAudioService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/UniversalAudioService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/UniversalAudioService.cs b/MediaBrowser.Api/Playback/UniversalAudioService.cs index 227a630ee..cebd4b49a 100644 --- a/MediaBrowser.Api/Playback/UniversalAudioService.cs +++ b/MediaBrowser.Api/Playback/UniversalAudioService.cs @@ -300,7 +300,7 @@ namespace MediaBrowser.Api.Playback // hls segment container can only be mpegts or fmp4 per ffmpeg documentation // TODO: remove this when we switch back to the segment muxer - var supportedHLSContainers = new string[] { "mpegts", "fmp4" }; + var supportedHLSContainers = new[] { "mpegts", "fmp4" }; var newRequest = new GetMasterHlsAudioPlaylist { |
