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

Removed Drone Specific parser, on 2nd look it is not needed... just need to include the quality when adding it to the SAB Queue.

pull/3113/head
markus101 14 years ago
parent fd038891fb
commit 1ba6cd0d3a

@ -171,32 +171,6 @@ namespace NzbDrone.Core
return result;
}
internal static QualityTypes ParseDroneQuality(string name)
{
var result = QualityTypes.Unknown;
if (name.Contains("[TV]"))
return QualityTypes.TV;
if (name.Contains("[DVD]"))
return QualityTypes.DVD;
if (name.Contains("[BDRip]"))
return QualityTypes.BDRip;
if (name.Contains("[HDTV]"))
return QualityTypes.HDTV;
if (name.Contains("[WEBDL]"))
return QualityTypes.WEBDL;
if (name.Contains("[Bluray]"))
return QualityTypes.Bluray;
//If it's unknown let the "regular" quality parse have a go
return ParseQuality(name);
}
/// <summary>
/// Normalizes the title. removing all non-word characters as well as common tokens
/// such as 'the' and 'and'

Loading…
Cancel
Save