Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/98b6932ffe3d14f3d1c6f76d38eab0d34754640e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
3 deletions
@ -41,7 +41,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
var parameters = new Dictionary < string , object > ( ) ;
parameters . Add ( "title" , title ) ;
parameters . Add ( "message" , message ) ;
parameters . Add ( "image" , "https://raw.github.com/ Sonarr/Son arr/develop/Logo/64.png") ;
parameters . Add ( "image" , "https://raw.github.com/ Radarr/Rad arr/develop/Logo/64.png") ;
parameters . Add ( "displaytime" , settings . DisplayTime * 1000 ) ;
ProcessRequest ( request , settings , "GUI.ShowNotification" , parameters ) ;
@ -52,7 +52,6 @@ module.exports = Marionette.ItemView.extend({
this . listenTo ( FullMovieCollection , 'save' , function ( ) {
window . alert ( ' Done Saving' ) ;
var selected = FullMovieCollection . where ( { selected : true } ) ;
} ) ;
@ -177,7 +176,7 @@ module.exports = Marionette.ItemView.extend({
} ,
_organizeFiles : function ( ) {
var selected = this . editorGrid . getSelectedModels ( ) ;
var selected = FullMovieCollection . where ( { selected : true } ) ;
var updateFilesMoviesView = new UpdateFilesMoviesView ( { movies : selected } ) ;
this . listenToOnce ( updateFilesMoviesView , 'updatingFiles' , this . _afterSave ) ;