Skip to content

Commit

Permalink
Fix #234 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
louislam authored Dec 4, 2023
1 parent 54fb2c1 commit 6eca6dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/socket-handlers/docker-socket-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export class DockerSocketHandler extends SocketHandler {
socket.on("getDockerNetworkList", async (callback) => {
try {
checkLogin(socket);
const dockerNetworkList = server.getDockerNetworkList();
const dockerNetworkList = await server.getDockerNetworkList();
callback({
ok: true,
dockerNetworkList,
Expand Down

0 comments on commit 6eca6dc

Please sign in to comment.