fixed mediacover images not being returned.

autocomplete now shows 20 results instead of 8
This commit is contained in:
kay.one 2013-05-20 13:30:23 -07:00
commit dabbd5f90e
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,4 @@
using System;
using System.IO;
using System.Linq;
using NzbDrone.Common;
@ -30,6 +31,11 @@ namespace NzbDrone.Api.Frontend
return false;
}
if (resourceUrl.StartsWith("/mediacover", StringComparison.CurrentCultureIgnoreCase))
{
return false;
}
return Extensions.Any(resourceUrl.EndsWith);
}
}