mirror of
https://github.com/Radarr/Radarr
synced 2026-05-08 21:01:22 +02:00
Fixed: Use Download Client name for grabbed history events
This commit is contained in:
parent
6160bbf113
commit
7ddc8d416c
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ public void DownloadReport(RemoteMovie remoteMovie, bool foceDownload = false)
|
||||||
}
|
}
|
||||||
|
|
||||||
var movieGrabbedEvent = new MovieGrabbedEvent(remoteMovie);
|
var movieGrabbedEvent = new MovieGrabbedEvent(remoteMovie);
|
||||||
movieGrabbedEvent.DownloadClient = downloadClient.GetType().Name;
|
movieGrabbedEvent.DownloadClient = downloadClient.Name;
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(downloadClientId))
|
if (!string.IsNullOrWhiteSpace(downloadClientId))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue