1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

fixed: increased tvdb search limit to 10

This commit is contained in:
Keivan Beigi
2014-12-30 20:24:35 -08:00
parent c368335183
commit 46bf80dcd1
4 changed files with 3 additions and 323 deletions
@@ -45,7 +45,7 @@ namespace NzbDrone.Core.MetadataSource
return new[] { _tvdb.GetShow(tvdbId) };
}
return _tvdb.Search(GetSearchTerm(lowerTitle));
return _tvdb.Search(GetSearchTerm(lowerTitle), 10);
}
public List<Series> SearchForNewSeries(string title)