From fe15f059e479e96286c7cf0a7f271c8e0ea2f171 Mon Sep 17 00:00:00 2001 From: krivoshein Date: Fri, 23 Jan 2026 11:30:08 +0300 Subject: [PATCH] add blocker CalculateFullHashWithSetup --- LibServer/Systems/updatecontroller.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LibServer/Systems/updatecontroller.cpp b/LibServer/Systems/updatecontroller.cpp index ad3d911..aeb0394 100644 --- a/LibServer/Systems/updatecontroller.cpp +++ b/LibServer/Systems/updatecontroller.cpp @@ -117,10 +117,12 @@ void UpdateController::calculateFullHash() void UpdateController::calculateFullHashWithSetup() { + bool res = emit signal_BlockAutorization(true, "SERVER", "CalculateFullHashWithSetup"); commonClientHandler->slot_sendPacketToAllClients(PacketType::RECALCULATE_HASH); calculateCurrentSharedHash(); setUpCurrentServerHash(); commonClientHandler->slot_sendPacketToAllClients(PacketType::HASH_READY); + res = emit signal_BlockAutorization(false, "SERVER", "CalculateFullHashWithSetup"); } void UpdateController::saveHash(QString fileName,QList *fileList)