Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/29f1c36f54aa11378b7eee07159a0f0a7de10be4?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
1 deletions
@ -265,7 +265,6 @@ namespace NzbDrone.Core.Indexers.Definitions
Grabs = ParseUtil . CoerceInt ( row . Snatch ) ,
Grabs = ParseUtil . CoerceInt ( row . Snatch ) ,
Seeders = ParseUtil . CoerceInt ( row . Seed ) ,
Seeders = ParseUtil . CoerceInt ( row . Seed ) ,
Peers = ParseUtil . CoerceInt ( row . Seed ) + ParseUtil . CoerceInt ( row . Leech ) ,
Peers = ParseUtil . CoerceInt ( row . Seed ) + ParseUtil . CoerceInt ( row . Leech ) ,
TvMazeId = ParseUtil . CoerceInt ( row . TvMazeId ) ,
Scene = row . Tags ? . ContainsIgnoreCase ( "scene" ) ,
Scene = row . Tags ? . ContainsIgnoreCase ( "scene" ) ,
MinimumRatio = 0 , // ratioless
MinimumRatio = 0 , // ratioless
MinimumSeedTime = row . Category . ToLower ( ) = = "season" ? 432000 : 86400 , // 120 hours for seasons and 24 hours for episodes
MinimumSeedTime = row . Category . ToLower ( ) = = "season" ? 432000 : 86400 , // 120 hours for seasons and 24 hours for episodes
@ -273,6 +272,11 @@ namespace NzbDrone.Core.Indexers.Definitions
UploadVolumeFactor = 1
UploadVolumeFactor = 1
} ;
} ;
if ( row . TvMazeId . IsNotNullOrWhiteSpace ( ) )
{
release . TvMazeId = ParseUtil . CoerceInt ( row . TvMazeId ) ;
}
torrentInfos . Add ( release ) ;
torrentInfos . Add ( release ) ;
}
}