Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/490e78f2e5f84a668d97af0b6b448ef7fcd7fa56
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -33,7 +33,7 @@ namespace Ombi.Core.Engine.V2
public async Task < IEnumerable < IssuesSummaryModel > > GetIssues ( int position , int take , IssueStatus status , CancellationToken token )
{
var issues = await _issues . GetAll ( ) . Where ( x = > x . Status = = status & & x . ProviderId ! = null ) . Skip ( position ) . Take ( take ) . OrderBy ( x = > x . Title ) . ToListAsync ( token ) ;
var grouped = issues . GroupBy ( x = > x . Title , ( key , g ) = > new { Title = key , Issues = g } ) ;
var grouped = issues . GroupBy ( x = > new { x . Title , x . ProviderId } , ( key , g ) = > new { key = key , Issues = g } ) ;
var model = new List < IssuesSummaryModel > ( ) ;
@ -42,8 +42,8 @@ namespace Ombi.Core.Engine.V2
model . Add ( new IssuesSummaryModel
{
Count = group . Issues . Count ( ) ,
Title = group . Title,
ProviderId = group . Issues. FirstOrDefault ( ) ? . ProviderId
Title = group . key. Title,
ProviderId = group . key . ProviderId
} ) ;
}