fix(radarr): Provide the movie id alongside the GetMovieCredits event when publishing to the networking channel

This commit is contained in:
2024-12-17 20:42:52 -07:00
parent 1ad35652f8
commit e1d5139e36
7 changed files with 46 additions and 82 deletions
+1 -1
View File
@@ -152,7 +152,7 @@ impl<'a, 'b> CliCommandHandler<'a, 'b, RadarrListCommand> for RadarrListCommandH
RadarrListCommand::MovieCredits { movie_id } => {
let resp = self
.network
.handle_network_event(RadarrEvent::GetMovieCredits(Some(movie_id)).into())
.handle_network_event(RadarrEvent::GetMovieCredits(movie_id).into())
.await?;
serde_json::to_string_pretty(&resp)?
}