Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8b8ee912c0b4d4e3d12b4760639d963dbac30429
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
8 additions and
8 deletions
@ -34,7 +34,7 @@ namespace NzbDrone.Api.Notifications
var notificationResource = new NotificationResource ( ) ;
notificationResource . InjectFrom ( notification ) ;
notificationResource . Fields = SchemaBuilder . GenerateSchema ( notification . Settings ) ;
notificationResource . Command = String . Format ( "test{0}" , notification . Implementation . ToLowerInvariant ( ) ) ;
notificationResource . Test Command = String . Format ( "test{0}" , notification . Implementation . ToLowerInvariant ( ) ) ;
result . Add ( notificationResource ) ;
}
@ -13,6 +13,6 @@ namespace NzbDrone.Api.Notifications
public Boolean OnDownload { get ; set ; }
public List < Field > Fields { get ; set ; }
public String Implementation { get ; set ; }
public String Command { get ; set ; }
public String Test Command { get ; set ; }
}
}
@ -31,7 +31,7 @@ namespace NzbDrone.Api.Notifications
var notificationResource = new NotificationResource ( ) ;
notificationResource . InjectFrom ( notification ) ;
notificationResource . Fields = SchemaBuilder . GenerateSchema ( notification . Settings ) ;
notificationResource . Command = String . Format ( "test{0}" , notification . Implementation . ToLowerInvariant ( ) ) ;
notificationResource . Test Command = String . Format ( "test{0}" , notification . Implementation . ToLowerInvariant ( ) ) ;
result . Add ( notificationResource ) ;
}
@ -4,7 +4,7 @@ define(['app'], function () {
NzbDrone . Commands . Execute = function ( name , properties ) {
var data = { command : name } ;
if ( properties !== undefined ) {
if ( ! properties ) {
$ . extend ( data , properties ) ;
}
@ -49,8 +49,8 @@ define([
} ,
_test : function ( ) {
var command = this . model . get ( 'c ommand') ;
if ( c ommand) {
var testCommand = this . model . get ( 'testC ommand') ;
if ( testC ommand) {
this . idle = false ;
this . ui . testButton . addClass ( 'disabled' ) ;
this . ui . testIcon . removeClass ( 'icon-question' ) ;
@ -58,12 +58,12 @@ define([
var properties = { } ;
_ . each ( this . model . attributes. fields , function ( field ) {
_ . each ( this . model . get( 'fields' ) , function ( field ) {
properties [ field . name ] = field . value ;
} ) ;
var self = this ;
var commandPromise = NzbDrone . Commands . Execute ( c ommand, properties ) ;
var commandPromise = NzbDrone . Commands . Execute ( testC ommand, properties ) ;
commandPromise . done ( function ( ) {
NzbDrone . Shared . Messenger . show ( {
message : 'Notification settings tested successfully'