fix: use c.name not c.names in factory reset

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dorian 2026-03-15 05:21:32 +00:00
parent 4afb69f982
commit a7d20958ef

View File

@ -617,7 +617,7 @@ impl RpcHandler {
let client = archipelago_container::PodmanClient::new("archipelago".to_string());
if let Ok(containers) = client.list_containers().await {
for c in &containers {
let _ = client.stop_container(&c.names).await;
let _ = client.stop_container(&c.name).await;
}
}