aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2021-12-17 13:22:22 +0000
committerGitHub <[email protected]>2021-12-17 13:22:22 +0000
commitc2d8bc90d69786ead846499df90c7dfad4db0a82 (patch)
tree15ca78e011ab90d00bf20da391c038bb38f6e97e
parentMerge pull request #34 from saturneric/develop (diff)
parentFixed Clash when decrypt reci is unknown. (diff)
downloadGpgFrontend-c2d8bc90d69786ead846499df90c7dfad4db0a82.tar.gz
GpgFrontend-c2d8bc90d69786ead846499df90c7dfad4db0a82.zip
Merge pull request #35 from saturneric/develop
Fixed Clash when decrypt reci is unknown.
-rw-r--r--src/gpg/result_analyse/DecryptResultAnalyse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpg/result_analyse/DecryptResultAnalyse.cpp b/src/gpg/result_analyse/DecryptResultAnalyse.cpp
index f7fc70fe..9c3e7dd0 100644
--- a/src/gpg/result_analyse/DecryptResultAnalyse.cpp
+++ b/src/gpg/result_analyse/DecryptResultAnalyse.cpp
@@ -86,7 +86,7 @@ bool GpgFrontend::DecryptResultAnalyse::print_reci(std::stringstream &stream,
stream << std::endl;
- stream << " " << _("Keu ID") << ": " << key.id().c_str() << std::endl;
+ stream << " " << _("Keu ID") << ": " << reci->keyid << std::endl;
stream << " " << _("Public Algo") << ": "
<< gpgme_pubkey_algo_name(reci->pubkey_algo) << std::endl;