Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/15bbeb92709839438d2239ed1d2c066a1e64292c
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
7 additions and
8 deletions
@ -1,6 +1,6 @@
'use strict;'
define ( [ 'app' , 'AddSeries/RootFolders/RootFolderCollection' , ' Shared /AutoComplete'] , function ( app , rootFolders ) {
define ( [ 'app' , 'AddSeries/RootFolders/RootFolderCollection' , ' Mixins /AutoComplete'] , function ( app , rootFolders ) {
NzbDrone . AddSeries . RootFolderItemView = Backbone . Marionette . ItemView . extend ( {
@ -15,11 +15,10 @@
< / span >
< / div >
< / div >
<!-- Todo: This should auto - complete -->
< div class = "control-group" >
< label class = "control-label" > Unsorted TV Directory< / label >
< div class = "controls" >
< input type = "text" placeholder = "C:\Unsorted TV" name = "downloadClientDropDirectory" / >
< input type = "text" placeholder = "C:\Unsorted TV" name = "downloadClientDropDirectory" class = "x-path" / >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "The directory where your download client downloads TV shows to." > < / i >
< / span >
@ -159,11 +158,10 @@
< fieldset >
< legend > Blackhole< / legend >
<!-- Todo: This should auto - complete -->
< div class = "control-group" >
< label class = "control-label" > Blackhole Directory< / label >
< div class = "controls" >
< input type = "text" name = "blackholeDirectory" / >
< input type = "text" name = "blackholeDirectory" class = "x-path" / >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "The directory where your download client will pickup .nzb files" > < / i >
< / span >
@ -173,11 +171,10 @@
< fieldset >
< legend > Pneumatic< / legend >
<!-- Todo: This should auto - complete -->
< div class = "control-group" >
< label class = "control-label" > Nzb Directory< / label >
< div class = "controls" >
< input type = "text" name = "pneumaticDirectory" / >
< input type = "text" name = "pneumaticDirectory" class = "x-path" / >
< span class = "help-inline" >
< i class = "icon-question-sign" title = "Directory to save NZBs for Pneumatic<br/>must be accessible from XBMC" > < / i >
< / span >
@ -11,13 +11,15 @@ define([
ui : {
switch : '.switch' ,
tooltip : '[class^="help-inline"] i'
tooltip : '[class^="help-inline"] i' ,
pathInput : '.x-path'
} ,
onRender : function ( ) {
NzbDrone . ModelBinder . bind ( this . model , this . el ) ;
this . ui . switch . bootstrapSwitch ( ) ;
this . ui . tooltip . tooltip ( { placement : 'right' , html : true } ) ;
this . ui . pathInput . autoComplete ( '/directories' ) ;
}
} ) ;
} ) ;