Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/4752ba3341967ddcdbff0aeaf58cb46dc04ce124
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
5 additions and
5 deletions
@ -26,7 +26,7 @@ namespace NzbDrone.Api.Frontend.Mappers
public override bool CanHandle ( string resourceUrl )
{
return resourceUrl . StartsWith ( "/log /") & & resourceUrl . EndsWith ( ".txt" ) ;
return resourceUrl . StartsWith ( "/log file /") & & resourceUrl . EndsWith ( ".txt" ) ;
}
}
}
@ -14,7 +14,7 @@ namespace NzbDrone.Api.Logs
public LogFileModule ( IAppFolderInfo appFolderInfo ,
IDiskProvider diskProvider )
: base ( "log/file s ")
: base ( "log/file ")
{
_appFolderInfo = appFolderInfo ;
_diskProvider = diskProvider ;
@ -6,7 +6,7 @@ define(
] , function ( Backbone , StatusModel ) {
return Backbone . Model . extend ( {
url : function ( ) {
return StatusModel . get ( 'urlBase' ) + '/log /' + this . get ( 'filename' ) ;
return StatusModel . get ( 'urlBase' ) + '/log file /' + this . get ( 'filename' ) ;
} ,
parse : function ( contents ) {
@ -10,7 +10,7 @@ define(
render : function ( ) {
this . $el . empty ( ) ;
this . $el . html ( '<a href="{0}/log /{1}" class="no-router" target="_blank">Download</a>'. format ( StatusModel . get ( 'urlBase' ) , this . cellValue ) ) ;
this . $el . html ( '<a href="{0}/log file /{1}" class="no-router" target="_blank">Download</a>'. format ( StatusModel . get ( 'urlBase' ) , this . cellValue ) ) ;
return this ;
}
@ -6,7 +6,7 @@ define(
'System/Logs/Files/LogFileModel'
] , function ( Backbone , LogFileModel ) {
return Backbone . Collection . extend ( {
url : window . NzbDrone . ApiRoot + '/log/file s ',
url : window . NzbDrone . ApiRoot + '/log/file ',
model : LogFileModel ,
state : {