aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/ComUtils.cpp
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-08-23 09:48:21 +0000
committerSaturneric <[email protected]>2021-08-23 09:48:21 +0000
commit03d37859e3e6c644085fb56c86c126536525d721 (patch)
treeb0d01772a97095191405a1c7c682ac35e4bdf5a0 /src/server/ComUtils.cpp
parentImprove the automatic key exchange function; fix some known problems; (diff)
downloadGpgFrontend-03d37859e3e6c644085fb56c86c126536525d721.tar.gz
GpgFrontend-03d37859e3e6c644085fb56c86c126536525d721.zip
Fix some problems; Ready to release a BETA version
Diffstat (limited to '')
-rw-r--r--src/server/ComUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/ComUtils.cpp b/src/server/ComUtils.cpp
index 6fce493f..01be4ea7 100644
--- a/src/server/ComUtils.cpp
+++ b/src/server/ComUtils.cpp
@@ -164,7 +164,7 @@ QByteArray ComUtils::getSignStringBase64(GpgME::GpgContext *ctx, const QString &
// The use of multi-threading brings an improvement in UI smoothness
gpgme_error_t error;
auto thread = QThread::create([&]() {
- error = ctx->sign(keys, signData, &outSignText, GPGME_SIG_MODE_NORMAL);
+ error = ctx->sign(keys, signData, &outSignText, GPGME_SIG_MODE_NORMAL, nullptr, false);
});
thread->start();
while (thread->isRunning()) QApplication::processEvents();