Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/25ae19bf804dd9fbc70d9a4d72fd4f5f3dd21d82
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
5 additions and
16 deletions
@ -1,9 +0,0 @@
'use strict' ;
define (
[
'handlebars'
] , function ( Handlebars ) {
Handlebars . registerHelper ( 'LinuxOnly' , function ( ) {
return new Handlebars . SafeString ( '<i class="icon-linux" title="Linux Only"></i>' ) ;
} ) ;
} ) ;
@ -19,7 +19,7 @@ define(
if ( StatusModel . get ( 'isLinux' ) )
{
return options . fn ( this ) ;
}
}
return options . inverse ( this ) ;
} ) ;
@ -10,7 +10,6 @@ define(
'Handlebars/Helpers/Series' ,
'Handlebars/Helpers/Quality' ,
'Handlebars/Helpers/System' ,
'Handlebars/Helpers/Os' ,
'Handlebars/Handlebars.Debug'
] , function ( Templates ) {
return function ( ) {
@ -1,4 +1,5 @@
< fieldset class = "advanced-setting" >
{{#if_linux}}
< fieldset class = "advanced-setting" >
< legend > Permissions< / legend >
< div class = "control-group" >
@ -16,7 +17,6 @@
< / label >
< span class = "help-inline-checkbox" >
{{LinuxOnly}}
< i class = "icon-question-sign" title = "Should chmod/chown be run when files are imported/renamed?" / >
< / span >
< / div >
@ -28,7 +28,6 @@
< div class = "controls" >
< input type = "text" name = "fileChmod" / >
< span class = "help-inline" >
{{LinuxOnly}}
< i class = "icon-nd-form-info" title = "Octal, applied to media files when imported/renamed by NzbDrone" / >
< / span >
< / div >
@ -40,9 +39,9 @@
< div class = "controls" >
< input type = "text" name = "folderChmod" / >
< span class = "help-inline" >
{{LinuxOnly}}
< i class = "icon-nd-form-info" title = "Octal, applied to series/season folders created by NzbDrone" / >
< / span >
< / div >
< / div >
< / fieldset >
< / fieldset >
{{/if_linux}}