Browse Source

remove tvdb split by comma

Luke Pulverenti 9 years ago
parent
commit
022c242f3a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs

+ 1 - 1
MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs

@@ -749,7 +749,7 @@ namespace MediaBrowser.Providers.TV
         private void AddPeople<T>(MetadataResult<T> result, string val, string personType)
         {
             // Sometimes tvdb actors have leading spaces
-            foreach (var person in val.Split(new[] { '|', ',' }, StringSplitOptions.RemoveEmptyEntries)
+            foreach (var person in val.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)
                                             .Where(i => !string.IsNullOrWhiteSpace(i))
                                             .Select(str => new PersonInfo { Type = personType, Name = str.Trim() }))
             {