fix(radarr): Construct and pass edit collection parameters alongside the EditCollection event when publishing to the networking channel

This commit is contained in:
2024-12-17 16:32:35 -07:00
parent f8792ea012
commit bdf48d1bf4
6 changed files with 236 additions and 279 deletions
+1 -1
View File
@@ -420,7 +420,7 @@ impl<'a, 'b> CliCommandHandler<'a, 'b, RadarrEditCommand> for RadarrEditCommandH
};
self
.network
.handle_network_event(RadarrEvent::EditCollection(Some(edit_collection_params)).into())
.handle_network_event(RadarrEvent::EditCollection(edit_collection_params).into())
.await?;
"Collection updated".to_owned()
}