diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-04 10:49:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-08-04 10:49:46 -0400 |
| commit | e208ef19b00d0e9efd5b2b43b33d138cfa08f298 (patch) | |
| tree | 4ec0369a391b09ed0ab9696a1bf2747af006c924 /MediaBrowser.Model/Dlna/ContainerProfile.cs | |
| parent | 9b0e289602bc170474a756abed121da9fb3b1df1 (diff) | |
check audio stream for null
Diffstat (limited to 'MediaBrowser.Model/Dlna/ContainerProfile.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/ContainerProfile.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/ContainerProfile.cs b/MediaBrowser.Model/Dlna/ContainerProfile.cs index a8f203e22..c05c19412 100644 --- a/MediaBrowser.Model/Dlna/ContainerProfile.cs +++ b/MediaBrowser.Model/Dlna/ContainerProfile.cs @@ -24,7 +24,7 @@ namespace MediaBrowser.Model.Dlna return SplitValue(Container); } - private static List<string> SplitValue(string value) + public static List<string> SplitValue(string value) { List<string> list = new List<string>(); foreach (string i in (value ?? string.Empty).Split(',')) |
