aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-05 11:13:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-05 11:13:23 -0400
commit70377c71ccf28efd81dbeecdd8fa6a62d6259bb6 (patch)
treefd20031e5e3e7170486701a5d21d5e9f67b8b0fc /MediaBrowser.Controller/Providers
parent2d7c0ab29c76392d5d8f6b72d27194ee38218643 (diff)
removed Publishers
Diffstat (limited to 'MediaBrowser.Controller/Providers')
-rw-r--r--MediaBrowser.Controller/Providers/MediaInfo/FFProbeAudioInfoProvider.cs18
1 files changed, 1 insertions, 17 deletions
diff --git a/MediaBrowser.Controller/Providers/MediaInfo/FFProbeAudioInfoProvider.cs b/MediaBrowser.Controller/Providers/MediaInfo/FFProbeAudioInfoProvider.cs
index e5f57d704..a7cc4985b 100644
--- a/MediaBrowser.Controller/Providers/MediaInfo/FFProbeAudioInfoProvider.cs
+++ b/MediaBrowser.Controller/Providers/MediaInfo/FFProbeAudioInfoProvider.cs
@@ -149,7 +149,7 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
// There's several values in tags may or may not be present
FetchStudios(audio, tags, "organization");
FetchStudios(audio, tags, "ensemble");
- FetchPublishers(audio, tags, "publisher");
+ FetchStudios(audio, tags, "publisher");
}
/// <summary>
@@ -169,22 +169,6 @@ namespace MediaBrowser.Controller.Providers.MediaInfo
}
/// <summary>
- /// Fetches the publishers.
- /// </summary>
- /// <param name="audio">The audio.</param>
- /// <param name="tags">The tags.</param>
- /// <param name="tagName">Name of the tag.</param>
- private void FetchPublishers(Audio audio, Dictionary<string, string> tags, string tagName)
- {
- var val = GetDictionaryValue(tags, tagName);
-
- if (!string.IsNullOrEmpty(val))
- {
- audio.AddPublishers(val.Split(new[] { '/', '|' }, StringSplitOptions.RemoveEmptyEntries));
- }
- }
-
- /// <summary>
/// Gets the genres from the tags collection
/// </summary>
/// <param name="audio">The audio.</param>