mirror of https://github.com/Sonarr/Sonarr
fixed mediacover images not being returned.
autocomplete now shows 20 results instead of 8
This commit is contained in:
parent
a36216c73c
commit
dabbd5f90e
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,8 @@ define(['app'], function () {
|
|||
}
|
||||
});
|
||||
},
|
||||
minLength: 3
|
||||
minLength: 3,
|
||||
items :20
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue