From e6bde97cad4c01ddb28846dc4d8e2428656d71dc Mon Sep 17 00:00:00 2001 From: Sebastian Friston Date: Thu, 12 Sep 2024 16:02:24 +0100 Subject: [PATCH] ISSUE #695 fixed client state machine --- client/src/functions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/functions.cpp b/client/src/functions.cpp index 061e22eb6..c9108c52c 100644 --- a/client/src/functions.cpp +++ b/client/src/functions.cpp @@ -97,7 +97,7 @@ int32_t performOperation( errCode = REPOERR_UNKNOWN_ERR; } } - if (command.command == cmdProcessDrawing) + else if (command.command == cmdProcessDrawing) { try { errCode = processDrawing(controller, token, command);