diff options
author | Saturn&Eric <[email protected]> | 2021-12-17 13:22:22 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-17 13:22:22 +0000 |
commit | c2d8bc90d69786ead846499df90c7dfad4db0a82 (patch) | |
tree | 15ca78e011ab90d00bf20da391c038bb38f6e97e | |
parent | Merge pull request #34 from saturneric/develop (diff) | |
parent | Fixed Clash when decrypt reci is unknown. (diff) | |
download | GpgFrontend-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.cpp | 2 |
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; |