mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-20 14:19:46 +00:00
New: Add TvdbId to Webhook Episode payload
This commit is contained in:
parent
e4b9086a7a
commit
6432f310e7
1 changed files with 2 additions and 0 deletions
|
@ -19,6 +19,7 @@ namespace NzbDrone.Core.Notifications.Webhook
|
|||
AirDate = episode.AirDate;
|
||||
AirDateUtc = episode.AirDateUtc;
|
||||
SeriesId = episode.SeriesId;
|
||||
TvdbId = episode.TvdbId;
|
||||
}
|
||||
|
||||
public int Id { get; set; }
|
||||
|
@ -29,5 +30,6 @@ namespace NzbDrone.Core.Notifications.Webhook
|
|||
public string AirDate { get; set; }
|
||||
public DateTime? AirDateUtc { get; set; }
|
||||
public int SeriesId { get; set; }
|
||||
public int TvdbId { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue