Fixed a subtle bug when downloading movies where the movie_id needs to be specified in the POST to the releases endpoint

This commit is contained in:
2023-08-08 10:50:07 -06:00
parent 77fd9e621f
commit e9b6ff0ca1
3 changed files with 16 additions and 2 deletions
+1
View File
@@ -458,6 +458,7 @@ pub struct Release {
pub struct ReleaseDownloadBody {
pub guid: String,
pub indexer_id: u64,
pub movie_id: u64,
}
#[derive(Default, PartialEq, Eq, Clone, Copy, Debug, EnumIter, Display)]