fix(radarr): Pass the number of log events to fetch in with the GetLogs event when publishing to the networking channel

This commit is contained in:
2024-12-17 20:33:39 -07:00
parent 9a9b13d604
commit 1ad35652f8
6 changed files with 12 additions and 80 deletions
+1 -1
View File
@@ -282,7 +282,7 @@ mod tests {
);
assert_eq!(
sync_network_rx.recv().await.unwrap(),
RadarrEvent::GetLogs(None).into()
RadarrEvent::GetLogs(500).into()
);
assert!(!app.data.radarr_data.prompt_confirm);
assert_eq!(app.tick_count, 0);