fix upausing all container action state

This commit is contained in:
mbecker20
2024-10-13 18:11:09 -04:00
parent 5088dc5c3c
commit 538a79b8b5

View File

@@ -520,7 +520,7 @@ impl Resolve<UnpauseAllContainers, (User, Update)> for State {
// Will check to ensure server not already busy before updating, and return Err if so.
// The returned guard will set the action state back to default when dropped.
let _action_guard = action_state
.update(|state| state.starting_containers = true)?;
.update(|state| state.unpausing_containers = true)?;
update_update(update.clone()).await?;