fix(api): fixed condition in processProgram

This commit is contained in:
Yury
2024-10-31 11:17:20 +03:00
parent 4f6f735f5b
commit 48a9a4dd0e
2 changed files with 2 additions and 2 deletions
@@ -49,7 +49,7 @@ export const processProgram = async (
await moveFile(codePath + '.bkp', codePath)
// we now need to poll the session status
while (session.state === SessionState.completed) {
while (session.state !== SessionState.completed) {
await delay(50)
}
} else {