mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
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 @@ public bool CanHandle(string resourceUrl)
|
||||
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
Block a user