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

Add import date to upgraded episodes in CustomScript and Webhook connections

Fixes #7547

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick
2022-10-17 22:53:48 -05:00
parent 4280df8b61
commit 2958faf4a8
2 changed files with 4 additions and 0 deletions
@@ -1,3 +1,4 @@
using System;
using NzbDrone.Core.MediaFiles;
namespace NzbDrone.Core.Notifications.Webhook
@@ -19,6 +20,7 @@ namespace NzbDrone.Core.Notifications.Webhook
SceneName = movieFile.SceneName;
IndexerFlags = movieFile.IndexerFlags.ToString();
Size = movieFile.Size;
DateAdded = movieFile.DateAdded;
}
public int Id { get; set; }
@@ -30,5 +32,6 @@ namespace NzbDrone.Core.Notifications.Webhook
public string SceneName { get; set; }
public string IndexerFlags { get; set; }
public long Size { get; set; }
public DateTime DateAdded { get; set; }
}
}