Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/d017c407476d6cadccc56d650999cc54efd26e99
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
3 additions and
9 deletions
@ -109,13 +109,6 @@
</inspection_tool>
<inspection_tool class= "SwitchStatementWithNoDefaultBranchJS" enabled= "true" level= "WARNING" enabled_by_default= "true" />
<inspection_tool class= "TailRecursionJS" enabled= "true" level= "WARNING" enabled_by_default= "true" />
<inspection_tool class= "TaskInspection" enabled= "true" level= "INFO" enabled_by_default= "true" >
<option name= "suppressedTasks" >
<set >
<option value= "LESS" />
</set>
</option>
</inspection_tool>
<inspection_tool class= "ThisExpressionReferencesGlobalObjectJS" enabled= "true" level= "ERROR" enabled_by_default= "true" />
<inspection_tool class= "ThreeNegationsPerFunctionJS" enabled= "true" level= "WARNING" enabled_by_default= "true" />
<inspection_tool class= "UnterminatedStatementJS" enabled= "true" level= "ERROR" enabled_by_default= "true" >
@ -134,6 +134,7 @@ define(
if ( ! this . isClosed ) {
if ( this . collection . length === 0 ) {
this . ui . searchBar . show ( ) ;
this . searchResult . show ( new NotFoundView ( { term : this . collection . term } ) ) ;
}
else {
@ -6,7 +6,7 @@ define(
] , function ( Marionette ) {
return Marionette . CompositeView . extend ( {
template : 'AddSeries/NotFound Template',
template : 'AddSeries/NotFound View Template',
initialize : function ( options ) {
this . options = options ;
@ -4,7 +4,7 @@ define(
'marionette'
] , function ( Marionette ) {
return Marionette . ItemView . extend ( {
template : 'Shared/ notfoundt emplate'
template : 'Shared/ NotFoundViewT emplate'
} ) ;
} ) ;