mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
parent
4703f8ac6c
commit
7dde5e0e42
2 changed files with 3 additions and 1 deletions
|
@ -87,7 +87,8 @@ namespace NzbDrone.Core.Notifications.Webhook
|
||||||
var payload = new WebhookRetagPayload
|
var payload = new WebhookRetagPayload
|
||||||
{
|
{
|
||||||
EventType = WebhookEventType.Retag,
|
EventType = WebhookEventType.Retag,
|
||||||
Artist = new WebhookArtist(message.Artist)
|
Artist = new WebhookArtist(message.Artist),
|
||||||
|
TrackFile = new WebhookTrackFile(message.TrackFile)
|
||||||
};
|
};
|
||||||
|
|
||||||
_proxy.SendWebhook(payload, Settings);
|
_proxy.SendWebhook(payload, Settings);
|
||||||
|
|
|
@ -3,5 +3,6 @@ namespace NzbDrone.Core.Notifications.Webhook
|
||||||
public class WebhookRetagPayload : WebhookPayload
|
public class WebhookRetagPayload : WebhookPayload
|
||||||
{
|
{
|
||||||
public WebhookArtist Artist { get; set; }
|
public WebhookArtist Artist { get; set; }
|
||||||
|
public WebhookTrackFile TrackFile { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue