Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/951cc7da1b377503c2f490d3bfafaf9b4c181c40
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
7 deletions
@ -22,21 +22,21 @@ namespace Ombi.Store.Repository.Requests
{
return await Db . TvRequests . Where ( x = > x . TvDbId = = tvDbId )
. Include ( x = > x . ChildRequests )
. ThenInclude ( x = > x . RequestedUser )
. ThenInclude ( x = > x . RequestedUser )
. Include ( x = > x . ChildRequests )
. ThenInclude ( x = > x . SeasonRequests )
. ThenInclude ( x = > x . Episodes )
. ThenInclude ( x = > x . SeasonRequests )
. ThenInclude ( x = > x . Episodes )
. FirstOrDefaultAsync ( ) ;
}
public TvRequests GetRequest ( int tvDbId )
{
return Db . TvRequests . Where ( x = > x . TvDbId = = tvDbId )
return Db . TvRequests . Where ( x = > x . TvDbId = = tvDbId ) . AsSplitQuery ( )
. Include ( x = > x . ChildRequests )
. ThenInclude ( x = > x . RequestedUser )
. ThenInclude ( x = > x . RequestedUser )
. Include ( x = > x . ChildRequests )
. ThenInclude ( x = > x . SeasonRequests )
. ThenInclude ( x = > x . Episodes )
. ThenInclude ( x = > x . SeasonRequests )
. ThenInclude ( x = > x . Episodes )
. FirstOrDefault ( ) ;
}