From 5d13ae5ae6754f00b27b5b842fdf34a95080c9e1 Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 11 Jun 2019 22:33:06 -0400 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 7f3b20c2a..ad3fadf2b 100644 --- a/src/NzbDrone.Core/Download/DownloadService.cs +++ b/src/NzbDrone.Core/Download/DownloadService.cs @@ -96,7 +96,7 @@ namespace NzbDrone.Core.Download } var albumGrabbedEvent = new AlbumGrabbedEvent(remoteAlbum); - albumGrabbedEvent.DownloadClient = downloadClient.GetType().Name; + albumGrabbedEvent.DownloadClient = downloadClient.Name; if (!string.IsNullOrWhiteSpace(downloadClientId)) {