diff options
Diffstat (limited to '')
-rw-r--r-- | src/gpg/result_analyse/DecryptResultAnalyse.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpg/result_analyse/DecryptResultAnalyse.cpp b/src/gpg/result_analyse/DecryptResultAnalyse.cpp index 4ff32c59..f7fc70fe 100644 --- a/src/gpg/result_analyse/DecryptResultAnalyse.cpp +++ b/src/gpg/result_analyse/DecryptResultAnalyse.cpp @@ -51,6 +51,9 @@ void GpgFrontend::DecryptResultAnalyse::do_analyse() { stream << _("File Name") << ": " << result->file_name << std::endl; stream << std::endl; } + if (result->is_mime) { + stream << _("MIME") << ": " << _("true") << std::endl; + } auto reci = result->recipients; if (reci != nullptr) stream << _("Recipient(s)") << ": " << std::endl; |