From c592fbf6c8bd836fc02841f5efbe1c1e745eb400 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 16 Apr 2018 18:24:10 -0400 Subject: [PATCH] Fixed: Register as Radarr to avoid issues with Sonarr (#2715) Fixes #1232 --- src/NzbDrone.Core/Notifications/Growl/GrowlService.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Growl/GrowlService.cs b/src/NzbDrone.Core/Notifications/Growl/GrowlService.cs index 740f8b59f..e62af4dc0 100644 --- a/src/NzbDrone.Core/Notifications/Growl/GrowlService.cs +++ b/src/NzbDrone.Core/Notifications/Growl/GrowlService.cs @@ -20,9 +20,8 @@ namespace NzbDrone.Core.Notifications.Growl public class GrowlService : IGrowlService { private readonly Logger _logger; - - //TODO: Change this to Sonarr, but it is a breaking change (v3) - private readonly Application _growlApplication = new Application("NzbDrone"); + + private readonly Application _growlApplication = new Application("Radarr"); private readonly NotificationType[] _notificationTypes; private class GrowlRequestState