fix(sonarr): Pass series ID alongside all GetEpisodeFiles events when publishing to the networking channel

This commit is contained in:
2024-12-17 23:59:49 -07:00
parent 2ecc591966
commit 5f94dbcabe
6 changed files with 15 additions and 67 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ impl<'a, 'b> CliCommandHandler<'a, 'b, SonarrListCommand> for SonarrListCommandH
SonarrListCommand::EpisodeFiles { series_id } => {
let resp = self
.network
.handle_network_event(SonarrEvent::GetEpisodeFiles(Some(series_id)).into())
.handle_network_event(SonarrEvent::GetEpisodeFiles(series_id).into())
.await?;
serde_json::to_string_pretty(&resp)?
}