Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/74ddc955c7d9dfafb7109ce9811155a2d774d486
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
2 deletions
@ -11,6 +11,7 @@ namespace Lidarr.Http.Extensions
public static class ReqResExtensions
{
private static readonly NancyJsonSerializer NancySerializer = new NancyJsonSerializer ( ) ;
private static readonly string Expires = DateTime . UtcNow . AddYears ( 1 ) . ToString ( "r" ) ;
public static readonly string LastModified = BuildInfo . BuildDateTime . ToString ( "r" ) ;
@ -52,8 +53,8 @@ namespace Lidarr.Http.Extensions
public static IDictionary < string , string > EnableCache ( this IDictionary < string , string > headers )
{
headers [ "Cache-Control" ] = "max-age=31536000 , public";
headers [ "Expires" ] = "Sat, 29 Jun 2020 00:00:00 GMT" ;
headers [ "Cache-Control" ] = "max-age=31536000 , public";
headers [ "Expires" ] = Expires ;
headers [ "Last-Modified" ] = LastModified ;
headers [ "Age" ] = "193266" ;