New: Add size to movie files in Webhook payload

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2020-10-04 22:31:49 -04:00
parent cc384d9297
commit 1d0771c9a4
1 changed files with 2 additions and 0 deletions

View File

@ -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; }
}
}