Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8a53e5fe72e60e0905e361cc2292e2bd38c0d793
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
14 additions and
2 deletions
@ -206,7 +206,7 @@ namespace NzbDrone.Core
return title . ToLower ( ) . Contains ( "proper" ) ;
}
private static QualityTypes ParseQuality ( string name )
internal static QualityTypes ParseQuality ( string name )
{
Logger . Trace ( "Trying to parse quality for {0}" , name ) ;
@ -1,4 +1,4 @@
using System.ServiceModel.Syndication ;
using System.ServiceModel.Syndication ;
using NLog ;
using NzbDrone.Core.Model ;
using NzbDrone.Core.Providers.Core ;
@ -1,4 +1,5 @@
using System.ServiceModel.Syndication ;
using NzbDrone.Core.Model ;
using NzbDrone.Core.Providers.Core ;
using SubSonic.Repository ;
@ -32,5 +33,16 @@ namespace NzbDrone.Core.Providers.Indexer
{
return item . Id ;
}
protected override EpisodeParseResult CustomParser ( SyndicationItem item , EpisodeParseResult currentResult )
{
var quality = Parser . ParseQuality ( item . Summary . Text ) ;
var proper = Parser . ParseProper ( item . Summary . Text ) ;
currentResult . Quality = quality ;
currentResult . Proper = proper ;
return currentResult ;
}
}
}