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
parent a36216c73c
commit dabbd5f90e
2 changed files with 8 additions and 1 deletions

View File

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

View File

@ -15,7 +15,8 @@ define(['app'], function () {
} }
}); });
}, },
minLength: 3 minLength: 3,
items :20
}); });
}; };