From e797b759b7007fc5998e7ff4fa88236af398dd38 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 11 Apr 2019 23:43:41 -0700 Subject: [PATCH] Fixed: Use Download Client name for grabbed history events --- src/NzbDrone.Core/Download/DownloadService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/DownloadService.cs b/src/NzbDrone.Core/Download/DownloadService.cs index 179a72fab..0997b42c5 100644 --- a/src/NzbDrone.Core/Download/DownloadService.cs +++ b/src/NzbDrone.Core/Download/DownloadService.cs @@ -97,7 +97,7 @@ namespace NzbDrone.Core.Download } var episodeGrabbedEvent = new EpisodeGrabbedEvent(remoteEpisode); - episodeGrabbedEvent.DownloadClient = downloadClient.GetType().Name; + episodeGrabbedEvent.DownloadClient = downloadClient.Name; if (!string.IsNullOrWhiteSpace(downloadClientId)) {