New: Add size to movie files in Webhook payload

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
pull/5146/head
Qstick 4 years ago
parent cc384d9297
commit 1d0771c9a4

@ -17,6 +17,7 @@ namespace NzbDrone.Core.Notifications.Webhook
QualityVersion = movieFile.Quality.Revision.Version;
ReleaseGroup = movieFile.ReleaseGroup;
SceneName = movieFile.SceneName;
Size = movieFile.Size;
}
public int Id { get; set; }
@ -26,5 +27,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; }
}
}

Loading…
Cancel
Save