Update v1.0.3

Took 54 minutes
This commit is contained in:
2022-11-28 10:34:13 +01:00
parent 641120f7cc
commit 6ec0f82356
9 changed files with 74 additions and 23 deletions

View File

@ -145,6 +145,11 @@ router.ws('/', async (ws, req, next) => {
WebSocketHandler.answerRequest(msg.data["type"] as RequestType, iTender.currentJob);
break;
}
case RequestType.DOWNLOAD_DRINKS: {
await iTender.refreshFromServer();
WebSocketHandler.answerRequest(msg.data["type"] as RequestType, "ok");
break;
}
}
break;