Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/c78e4374dd048373853b595c78be4c44d7f787ba
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
6 deletions
@ -108,11 +108,11 @@ export class LidarrComponent implements OnInit {
const settings = < ILidarrSettings > form . value ;
this . testerService . lidarrTest ( settings ) . subscribe ( result = > {
if ( result . isValid ) {
this . notificationService . success ( "Successfully connected to Son arr!") ;
this . notificationService . success ( "Successfully connected to Lid arr!") ;
} else if ( result . expectedSubDir !== null ) {
this . notificationService . error ( "Your Son arr Base URL must be set to " + result . expectedSubDir ) ;
this . notificationService . error ( "Your Lid arr Base URL must be set to " + result . expectedSubDir ) ;
} else {
this . notificationService . error ( "We could not connect to Son arr!") ;
this . notificationService . error ( "We could not connect to Lid arr!") ;
}
} ) ;
}
@ -98,11 +98,11 @@ export class RadarrComponent implements OnInit {
const settings = < IRadarrSettings > form . value ;
this . testerService . radarrTest ( settings ) . subscribe ( result = > {
if ( result . isValid ) {
this . notificationService . success ( "Successfully connected to Son arr!") ;
this . notificationService . success ( "Successfully connected to Rad arr!") ;
} else if ( result . expectedSubDir !== null ) {
this . notificationService . error ( "Your Son arr Base URL must be set to " + result . expectedSubDir ) ;
this . notificationService . error ( "Your Rad arr Base URL must be set to " + result . expectedSubDir ) ;
} else {
this . notificationService . error ( "We could not connect to Son arr!") ;
this . notificationService . error ( "We could not connect to Rad arr!") ;
}
} ) ;
}