Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/1d91d6fa9435a20dd8a0673fc93f160102f92575
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
3 deletions
@ -516,7 +516,7 @@ namespace Ombi.Core.Engine
HasLimit = true ,
Limit = limit ,
Remaining = count ,
NextRequest = oldestRequestedAt. AddDays ( 7 ) ,
NextRequest = DateTime. SpecifyKind ( oldestRequestedAt. AddDays ( 7 ) , DateTimeKind . Utc ) ,
} ;
}
}
@ -652,7 +652,7 @@ namespace Ombi.Core.Engine
HasLimit = true ,
Limit = limit ,
Remaining = count ,
NextRequest = oldestRequestedAt. AddDays ( 7 ) ,
NextRequest = DateTime. SpecifyKind ( oldestRequestedAt. AddDays ( 7 ) , DateTimeKind . Utc ) ,
} ;
}
}
@ -18,7 +18,7 @@ namespace Ombi.Schedule.Tests
var emailSettings = new Mock < ISettingsService < EmailNotificationSettings > > ( ) ;
var customziation = new Mock < ISettingsService < CustomizationSettings > > ( ) ;
var newsletterSettings = new Mock < ISettingsService < NewsletterSettings > > ( ) ;
var newsletter = new NewsletterJob ( null , null , null , null , null , null , customziation . Object , emailSettings . Object , null , null , newsletterSettings . Object , null );
var newsletter = new NewsletterJob ( null , null , null , null , null , null , customziation . Object , emailSettings . Object , null , null , newsletterSettings . Object , null , null , null , null );
var ep = new List < int > ( ) ;
foreach ( var i in episodes )