1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

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