diff options
author | Saturneric <[email protected]> | 2021-08-23 10:24:23 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-08-23 10:24:23 +0000 |
commit | 420db34b0b9fa3af987342d504eb61767eb31d4d (patch) | |
tree | 22bd1deb310f69e6e30d7a0e499c85b254cde69d /src/ui/main_window/MainWindowServerSlotFunction.cpp | |
parent | Fix some problems; Fix memory leaks that have been discovered (diff) | |
download | GpgFrontend-420db34b0b9fa3af987342d504eb61767eb31d4d.tar.gz GpgFrontend-420db34b0b9fa3af987342d504eb61767eb31d4d.zip |
Reduced issues.
Diffstat (limited to 'src/ui/main_window/MainWindowServerSlotFunction.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowServerSlotFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/main_window/MainWindowServerSlotFunction.cpp b/src/ui/main_window/MainWindowServerSlotFunction.cpp index 13dc6af3..3a7e9f71 100644 --- a/src/ui/main_window/MainWindowServerSlotFunction.cpp +++ b/src/ui/main_window/MainWindowServerSlotFunction.cpp @@ -120,7 +120,7 @@ QString MainWindow::getCryptText(const QString &shortenCryptoText) { QCryptographicHash sha_generator(QCryptographicHash::Sha256); sha_generator.addData(cryptoText.toUtf8()); - if (sha_generator.result().toHex() == sha) { + if (sha_generator.result().toHex() == sha && serviceToken == serviceTokenFromServer) { return cryptoText; } else QMessageBox::critical(this, tr("Error"), tr("Invalid short ciphertext")); |