fix(radarr): Pass in the movie ID alongside the GetMovieHistory event when publishing to the networking channel

This commit is contained in:
2024-12-17 20:50:00 -07:00
parent 4c396c3442
commit 92d9222b05
6 changed files with 14 additions and 61 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ impl<'a, 'b> CliCommandHandler<'a, 'b, RadarrGetCommand> for RadarrGetCommandHan
RadarrGetCommand::MovieHistory { movie_id } => {
let resp = self
.network
.handle_network_event(RadarrEvent::GetMovieHistory(Some(movie_id)).into())
.handle_network_event(RadarrEvent::GetMovieHistory(movie_id).into())
.await?;
serde_json::to_string_pretty(&resp)?
}