mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 09:21:57 +00: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:
parent
cc384d9297
commit
1d0771c9a4
1 changed files with 2 additions and 0 deletions
|
@ -17,6 +17,7 @@ public WebhookMovieFile(MovieFile movieFile)
|
||||||
QualityVersion = movieFile.Quality.Revision.Version;
|
QualityVersion = movieFile.Quality.Revision.Version;
|
||||||
ReleaseGroup = movieFile.ReleaseGroup;
|
ReleaseGroup = movieFile.ReleaseGroup;
|
||||||
SceneName = movieFile.SceneName;
|
SceneName = movieFile.SceneName;
|
||||||
|
Size = movieFile.Size;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
@ -26,5 +27,6 @@ public WebhookMovieFile(MovieFile movieFile)
|
||||||
public int QualityVersion { get; set; }
|
public int QualityVersion { get; set; }
|
||||||
public string ReleaseGroup { get; set; }
|
public string ReleaseGroup { get; set; }
|
||||||
public string SceneName { get; set; }
|
public string SceneName { get; set; }
|
||||||
|
public long Size { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue