Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/45b1067d445d386a6d477b8b4198b46ae5ea8204?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: bdrip/brrip with resolution now recognized as Bluray quality.

pull/4/head
Taloth Saldono 11 years ago
parent ed99fa8698
commit 45b1067d44

@ -111,9 +111,27 @@ namespace NzbDrone.Core.Parser
return result; return result;
} }
if (sourceMatch.Groups["dvd"].Success || if (sourceMatch.Groups["bdrip"].Success ||
sourceMatch.Groups["bdrip"].Success ||
sourceMatch.Groups["brrip"].Success) sourceMatch.Groups["brrip"].Success)
{
if (resolution == Resolution._720p)
{
result.Quality = Quality.Bluray720p;
return result;
}
else if (resolution == Resolution._1080p)
{
result.Quality = Quality.Bluray1080p;
return result;
}
else
{
result.Quality = Quality.DVD;
return result;
}
}
if (sourceMatch.Groups["dvd"].Success)
{ {
result.Quality = Quality.DVD; result.Quality = Quality.DVD;
return result; return result;

Loading…
Cancel
Save