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
@@ -113,7 +113,7 @@ impl<'a> App<'a> {
}
ActiveRadarrBlock::MovieHistory => {
self
.dispatch_network_event(RadarrEvent::GetMovieHistory(None).into())
.dispatch_network_event(RadarrEvent::GetMovieHistory(self.extract_movie_id().await).into())
.await;
}
ActiveRadarrBlock::Cast | ActiveRadarrBlock::Crew => {