aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Manager/ProviderManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Providers/Manager/ProviderManager.cs')
-rw-r--r--MediaBrowser.Providers/Manager/ProviderManager.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/MediaBrowser.Providers/Manager/ProviderManager.cs b/MediaBrowser.Providers/Manager/ProviderManager.cs
index 580e9c4ac..090509ed3 100644
--- a/MediaBrowser.Providers/Manager/ProviderManager.cs
+++ b/MediaBrowser.Providers/Manager/ProviderManager.cs
@@ -795,22 +795,6 @@ namespace MediaBrowser.Providers.Manager
}
}
- // This is a workaround duplicate check for movies, where intersecting provider ids are not always available
- if (typeof(TItemType) == typeof(Movie) || typeof(TItemType) == typeof(Series))
- {
- var titleYearString = string.Format("{0} ({1})", result.Name, result.ProductionYear);
-
- if (foundTitleYearStrings.Contains(titleYearString))
- {
- bFound = true;
- }
- else
- {
- foundTitleYearStrings.Add(titleYearString);
- }
-
- }
-
if (!bFound && resultList.Count < maxResults)
{
resultList.Add(result);