fix(sonarr): Pass the series ID alongside all GetSeriesHistory events when publishing to the networking channel
This commit is contained in:
@@ -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 => {
|
||||
|
||||
Reference in New Issue
Block a user