Skip to content

Commit

Permalink
emergency fix: regular instance not fetched correctly if docker is un…
Browse files Browse the repository at this point in the history
…avai
  • Loading branch information
CheatCod committed Jun 18, 2024
1 parent 2f6a858 commit 27401bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/handlers/instance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub async fn get_instance_list(
}
}
let docker_bridge = state.docker_bridge.clone();
let vec = docker_bridge.list_containers().await?;
let vec = docker_bridge.list_containers().await.unwrap_or_default();

list_of_configs.extend(vec);

Expand Down

0 comments on commit 27401bd

Please sign in to comment.