Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/0e246b2cd93111e69a978a2ac0d878e6bc95c5ef
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
17 additions and
2 deletions
@ -27,6 +27,17 @@ $(".addExistingButton").live('click', function () {
var path = root . find ( ".seriesPathValue Label" ) . text ( ) ;
if ( seriesId === 0 || title . length === 0 ) {
$ . gritter . add ( {
title : 'Failed' ,
text : 'Invalid Series Information for \'' + path + '\'' ,
image : '../../content/images/error.png' ,
class _name : 'gritter-fail'
} ) ;
return false ;
}
$ . ajax ( {
type : "POST" ,
url : addSeriesUrl ,
@ -149,9 +160,13 @@ $('#quickAddNew').live('click', function () {
//Watermark
$ ( '#rootDirInput' ) . livequery ( function ( ) {
$ ( '#rootDirInput' ) . watermark ( 'Enter your new root folder path...' ) ;
$ ( this ) . watermark ( 'Enter your new root folder path...' ) ;
} ) ;
$ ( '#newSeriesLookup' ) . livequery ( function ( ) {
$ ( '#newSeriesLookup' ) . watermark ( 'Title of the series you want to add...' ) ;
$ ( this ) . watermark ( 'Title of the series you want to add...' ) ;
} ) ;
$ ( '.existingSeriesContainer .seriesLookup' ) . livequery ( function ( ) {
$ ( this ) . watermark ( 'Please enter the series title...' ) ;
} ) ;