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

This commit is contained in:
2024-12-18 00:39:50 -07:00
parent bafaf7ca7a
commit ec8d748991
6 changed files with 21 additions and 125 deletions
+3 -1
View File
@@ -38,7 +38,9 @@ impl<'a> App<'a> {
}
ActiveSonarrBlock::SeriesHistory => {
self
.dispatch_network_event(SonarrEvent::GetSeriesHistory(None).into())
.dispatch_network_event(
SonarrEvent::GetSeriesHistory(self.extract_series_id().await).into(),
)
.await;
}
ActiveSonarrBlock::SeasonDetails => {