Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/a578374588b4ca9df4eadf4c424e9d3d76c06874
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
3 deletions
@ -50,13 +50,14 @@ namespace Ombi.Core.Engine.V2
public async Task < SearchFullInfoTvShowViewModel > GetShowByRequest ( int requestId , CancellationToken token )
{
var request = await RequestService . TvRequestService . Get ( ) . FirstOrDefaultAsync ( x = > x . Id = = requestId ) ;
return await GetShowInformation ( request . ExternalProviderId . ToString ( ) , token ) ; // TODO
return await GetShowInformation ( request . ExternalProviderId . ToString ( ) , token ) ;
}
public async Task < SearchFullInfoTvShowViewModel > GetShowInformation ( string tvdbid , CancellationToken token )
{
var show = await Cache . GetOrAdd ( nameof ( GetShowInformation ) + tvdbid ,
async ( ) = > await _movieApi . GetTVInfo ( tvdbid ) , DateTime . Now . AddHours ( 12 ) ) ;
var langCode = await DefaultLanguageCode ( null ) ;
var show = await Cache . GetOrAdd ( nameof ( GetShowInformation ) + langCode + tvdbid ,
async ( ) = > await _movieApi . GetTVInfo ( tvdbid , langCode ) , DateTime . Now . AddHours ( 12 ) ) ;
if ( show = = null | | show . name = = null )
{
// We don't have enough information