mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-08 12:33:04 +02:00
New: Add size to track files in Webhook payload
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
0ee481039b
commit
25ed9e5020
1 changed files with 2 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ public WebhookTrackFile(TrackFile trackFile)
|
|||
QualityVersion = trackFile.Quality.Revision.Version;
|
||||
ReleaseGroup = trackFile.ReleaseGroup;
|
||||
SceneName = trackFile.SceneName;
|
||||
Size = trackFile.Size;
|
||||
}
|
||||
|
||||
public int Id { get; set; }
|
||||
|
|
@ -24,5 +25,6 @@ public WebhookTrackFile(TrackFile trackFile)
|
|||
public int QualityVersion { get; set; }
|
||||
public string ReleaseGroup { get; set; }
|
||||
public string SceneName { get; set; }
|
||||
public long Size { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue