Refactored the ErrorMessage widget into a generic Message widget for enhanced reuse. Added support for testing a single indexer at a time.

This commit is contained in:
2024-02-15 11:11:10 -07:00
parent b49bfaa9c1
commit a360c83431
23 changed files with 418 additions and 78 deletions
+5
View File
@@ -49,6 +49,11 @@ impl<'a> App<'a> {
.dispatch_network_event(RadarrEvent::GetIndexerSettings.into())
.await;
}
ActiveRadarrBlock::TestIndexer => {
self
.dispatch_network_event(RadarrEvent::TestIndexer.into())
.await;
}
ActiveRadarrBlock::TestAllIndexers => {
self
.dispatch_network_event(RadarrEvent::TestAllIndexers.into())