diff --git a/src/NzbDrone.Core/Notifications/Webhook/WebhookEpisodeFile.cs b/src/NzbDrone.Core/Notifications/Webhook/WebhookEpisodeFile.cs index ad2779538..346e6a836 100644 --- a/src/NzbDrone.Core/Notifications/Webhook/WebhookEpisodeFile.cs +++ b/src/NzbDrone.Core/Notifications/Webhook/WebhookEpisodeFile.cs @@ -15,6 +15,7 @@ namespace NzbDrone.Core.Notifications.Webhook QualityVersion = episodeFile.Quality.Revision.Version; ReleaseGroup = episodeFile.ReleaseGroup; SceneName = episodeFile.SceneName; + Size = episodeFile.Size; } public int Id { get; set; } @@ -24,5 +25,6 @@ namespace NzbDrone.Core.Notifications.Webhook public int QualityVersion { get; set; } public string ReleaseGroup { get; set; } public string SceneName { get; set; } + public long Size { get; set; } } } \ No newline at end of file