Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/aa50be076c3c86db7520711dd9753138b42dc65a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
2 deletions
@ -14,7 +14,9 @@ namespace NzbDrone.Api.Extensions
public static Response CompressResponse ( this Response response , Request request )
{
if ( ! response . ContentType . Contains ( "image" ) & & request . Headers . AcceptEncoding . Any ( x = > x . Contains ( "gzip" ) ) )
if ( ! response . ContentType . Contains ( "image" )
& & request . Headers . AcceptEncoding . Any ( x = > x . Contains ( "gzip" ) )
& & ( ! response . Headers . ContainsKey ( "Content-Encoding" ) | | response . Headers [ "Content-Encoding" ] ! = "gzip" ) )
{
var data = new MemoryStream ( ) ;
response . Contents . Invoke ( data ) ;
@ -59,7 +59,8 @@ namespace NzbDrone.Api.Frontend
response . Headers . DisableCache ( ) ;
}
return response . CompressResponse ( context . Request ) ;
//return response.CompressResponse(context.Request);
return response ;
}
_logger . Warn ( "File {0} not found" , filePath ) ;