Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/e56477abb057a327552fe3d95d46349153566fe1?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
80 additions and
0 deletions
@ -273,6 +273,7 @@
<Compile Include= "Model\Xbmc\ErrorResult.cs" />
<Compile Include= "Model\Xbmc\ErrorResult.cs" />
<Compile Include= "Model\Xbmc\IconType.cs" />
<Compile Include= "Model\Xbmc\IconType.cs" />
<Compile Include= "Providers\BannerProvider.cs" />
<Compile Include= "Providers\BannerProvider.cs" />
<Compile Include= "Providers\Indexer\Wombles.cs" />
<Compile Include= "Providers\SeasonProvider.cs" />
<Compile Include= "Providers\SeasonProvider.cs" />
<Compile Include= "Jobs\RecentBacklogSearchJob.cs" />
<Compile Include= "Jobs\RecentBacklogSearchJob.cs" />
<Compile Include= "Jobs\TrimLogsJob.cs" />
<Compile Include= "Jobs\TrimLogsJob.cs" />
@ -0,0 +1,79 @@
using System ;
using System.Collections.Generic ;
using System.ServiceModel.Syndication ;
using System.Text.RegularExpressions ;
using Ninject ;
using NzbDrone.Common ;
using NzbDrone.Core.Model ;
using NzbDrone.Core.Providers.Core ;
namespace NzbDrone.Core.Providers.Indexer
{
public class Wombles : IndexerBase
{
[Inject]
public Wombles ( HttpProvider httpProvider , ConfigProvider configProvider ) : base ( httpProvider , configProvider )
{
}
protected override string [ ] Urls
{
get
{
return new [ ]
{
string . Format ( "http://nzb.isasecret.com/rss" )
} ;
}
}
public override bool IsConfigured
{
get
{
return true ;
}
}
public override string Name
{
get { return "Wombles" ; }
}
protected override string NzbDownloadUrl ( SyndicationItem item )
{
return item . Links [ 0 ] . Uri . ToString ( ) ;
}
protected override IList < string > GetEpisodeSearchUrls ( string seriesTitle , int seasonNumber , int episodeNumber )
{
return new List < string > ( ) ;
}
protected override IList < string > GetSeasonSearchUrls ( string seriesTitle , int seasonNumber )
{
return new List < string > ( ) ;
}
protected override IList < string > GetDailyEpisodeSearchUrls ( string seriesTitle , DateTime date )
{
return new List < string > ( ) ;
}
protected override IList < string > GetPartialSeasonSearchUrls ( string seriesTitle , int seasonNumber , int episodeWildcard )
{
return new List < string > ( ) ;
}
protected override EpisodeParseResult CustomParser ( SyndicationItem item , EpisodeParseResult currentResult )
{
if ( currentResult ! = null )
{
currentResult . Size = 0 ;
}
return currentResult ;
}
}
}