Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e82cf7039901e2bb12d80531fa63b15368fdc2c5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

NetImport - Do not allow TV Series / Mini-Series (works with IMDb) ()

* Do not allow TV Series / Mini-Series (works with IMDb) 

* Ignore Case
pull/732/head
Devin Buhl 8 years ago committed by GitHub
parent e7d65ee4ae
commit e82cf70399

@ -135,9 +135,16 @@ namespace NzbDrone.Core.NetImport.RSSImport
protected virtual Movie ProcessItem(XElement item, Movie releaseInfo)
{
var result = Parser.Parser.ParseMovieTitle(GetTitle(item));
var title = GetTitle(item);
releaseInfo.Title = GetTitle(item);
// Loosely allow movies (will work with IMDB)
if (title.ContainsIgnoreCase("TV Series") || title.ContainsIgnoreCase("Mini-Series"))
{
return null;
}
releaseInfo.Title = title;
var result = Parser.Parser.ParseMovieTitle(title);
if (result != null)
{

Loading…
Cancel
Save