Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/5660b5086c5d24a307df6a0e881a116b0faa00e2?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
8 deletions
@ -66,7 +66,7 @@ namespace NzbDrone.Core.Indexers
indexers . Add ( newznab ) ;
return indexers .OrderBy ( n = > n . Name ) . ToList ( ) ;
return indexers ;
}
private Indexer ToIndexer ( IndexerDefinition definition )
@ -14,9 +14,9 @@ define(['app',
openSchemaModal : function ( ) {
//TODO: Is there a better way to deal with changing URLs?
var schema = new NzbDrone . Settings . Indexers . Collection ( ) ;
schema . url = '/api/indexer/schema' ;
schema . fetch ( {
var schema Collection = new NzbDrone . Settings . Indexers . Collection ( ) ;
schema Collection . url = '/api/indexer/schema' ;
schema Collection . fetch ( {
success : function ( collection ) {
collection . url = '/api/indexer' ;
var model = _ . first ( collection . models ) ;
@ -10,11 +10,11 @@ define(['app', 'Settings/Notifications/ItemView', 'Settings/Notifications/AddVie
} ,
openSchemaModal : function ( ) {
var schema = new NzbDrone . Settings . Notifications . Collection ( ) ;
schema . url = '/api/notification/schema' ;
schema . fetch ( ) ;
var schema Collection = new NzbDrone . Settings . Notifications . Collection ( ) ;
schema Collection . url = '/api/notification/schema' ;
schema Collection . fetch ( ) ;
var view = new NzbDrone . Settings . Notifications . AddView ( { collection : schema } ) ;
var view = new NzbDrone . Settings . Notifications . AddView ( { collection : schema Collection } ) ;
NzbDrone . modalRegion . show ( view ) ;
}
} ) ;