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:
parent
7b9fa08493
commit
cc270bcf34
@ -617,7 +617,7 @@ impl RpcHandler {
|
|||||||
let client = archipelago_container::PodmanClient::new("archipelago".to_string());
|
let client = archipelago_container::PodmanClient::new("archipelago".to_string());
|
||||||
if let Ok(containers) = client.list_containers().await {
|
if let Ok(containers) = client.list_containers().await {
|
||||||
for c in &containers {
|
for c in &containers {
|
||||||
let _ = client.stop_container(&c.names).await;
|
let _ = client.stop_container(&c.name).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user