1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed: Use Download Client name for grabbed history events

This commit is contained in:
Mark McDowall 2019-04-11 23:43:41 -07:00
parent b60d5f837e
commit e797b759b7

View File

@ -97,7 +97,7 @@ public void DownloadReport(RemoteEpisode remoteEpisode)
}
var episodeGrabbedEvent = new EpisodeGrabbedEvent(remoteEpisode);
episodeGrabbedEvent.DownloadClient = downloadClient.GetType().Name;
episodeGrabbedEvent.DownloadClient = downloadClient.Name;
if (!string.IsNullOrWhiteSpace(downloadClientId))
{