New: Add TvdbId to Webhook Episode payload

pull/6145/head
Collin Heist 7 months ago committed by GitHub
parent e4b9086a7a
commit 6432f310e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save