update translations

This commit is contained in:
Luke Pulverenti
2015-08-12 17:39:02 -04:00
parent a5ef758917
commit da837ffbf0
3 changed files with 13 additions and 1 deletions

View File

@@ -914,7 +914,7 @@ namespace MediaBrowser.Server.Implementations.Channels
if (query.Limit.HasValue && query.Limit.Value > channelInfo.MaxPageSize.Value)
{
throw new ArgumentException(string.Format("{0} channel only supports a maximum of {1} records at a time.", channel.Name, channelInfo.MaxPageSize.Value));
query.Limit = Math.Min(query.Limit.Value, channelInfo.MaxPageSize.Value);
}
providerLimit = query.Limit;