diff --git a/src/Ombi/ClientApp/src/app/settings/lidarr/lidarr.component.ts b/src/Ombi/ClientApp/src/app/settings/lidarr/lidarr.component.ts index ddb58b970..5d8667db4 100644 --- a/src/Ombi/ClientApp/src/app/settings/lidarr/lidarr.component.ts +++ b/src/Ombi/ClientApp/src/app/settings/lidarr/lidarr.component.ts @@ -108,11 +108,11 @@ export class LidarrComponent implements OnInit { const settings = form.value; this.testerService.lidarrTest(settings).subscribe(result => { if (result.isValid) { - this.notificationService.success("Successfully connected to Sonarr!"); + this.notificationService.success("Successfully connected to Lidarr!"); } else if (result.expectedSubDir !== null) { - this.notificationService.error("Your Sonarr Base URL must be set to " + result.expectedSubDir); + this.notificationService.error("Your Lidarr Base URL must be set to " + result.expectedSubDir); } else { - this.notificationService.error("We could not connect to Sonarr!"); + this.notificationService.error("We could not connect to Lidarr!"); } }); } diff --git a/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts b/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts index dc7ae8f3d..df804a08c 100644 --- a/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts +++ b/src/Ombi/ClientApp/src/app/settings/radarr/radarr.component.ts @@ -98,11 +98,11 @@ export class RadarrComponent implements OnInit { const settings = form.value; this.testerService.radarrTest(settings).subscribe(result => { if (result.isValid) { - this.notificationService.success("Successfully connected to Sonarr!"); + this.notificationService.success("Successfully connected to Radarr!"); } else if (result.expectedSubDir !== null) { - this.notificationService.error("Your Sonarr Base URL must be set to " + result.expectedSubDir); + this.notificationService.error("Your Radarr Base URL must be set to " + result.expectedSubDir); } else { - this.notificationService.error("We could not connect to Sonarr!"); + this.notificationService.error("We could not connect to Radarr!"); } }); }