diff options
Diffstat (limited to 'src/core/model/GpgDecryptResult.cpp')
-rw-r--r-- | src/core/model/GpgDecryptResult.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/model/GpgDecryptResult.cpp b/src/core/model/GpgDecryptResult.cpp index 82398d96..a2e2c9a7 100644 --- a/src/core/model/GpgDecryptResult.cpp +++ b/src/core/model/GpgDecryptResult.cpp @@ -53,7 +53,7 @@ auto GpgDecryptResult::Recipients() -> QContainer<GpgRecipient> { for (auto* reci = result_ref_->recipients; reci != nullptr; reci = reci->next) { try { - result.emplace_back(reci); + result.push_back(GpgRecipient{reci}); } catch (...) { FLOG_W( "caught exception when processing invalid_recipients, " |