diff options
author | Saturneric <[email protected]> | 2023-11-29 09:49:54 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-11-29 09:49:54 +0000 |
commit | 9d16c9d5dfcd1171d713c3ba87a69d0f0fac4f33 (patch) | |
tree | 3e85ce5236d134b59d70277cf0cb713561aa2a53 /src/core/GpgCoreInit.cpp | |
parent | style: tidy up core/model (diff) | |
download | GpgFrontend-9d16c9d5dfcd1171d713c3ba87a69d0f0fac4f33.tar.gz GpgFrontend-9d16c9d5dfcd1171d713c3ba87a69d0f0fac4f33.zip |
fix: repair gnupg info listing funtion
Diffstat (limited to 'src/core/GpgCoreInit.cpp')
-rw-r--r-- | src/core/GpgCoreInit.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/GpgCoreInit.cpp b/src/core/GpgCoreInit.cpp index e6d7f784..cbf07b62 100644 --- a/src/core/GpgCoreInit.cpp +++ b/src/core/GpgCoreInit.cpp @@ -245,11 +245,12 @@ void InitGpgFrontendCore() { "GPGFRONTEND_CORE_INITLIZED", [](const Module::EventIdentifier& /*e*/, const Module::Event::ListenerIdentifier& l_id, DataObjectPtr o) { - if (l_id == Module::GetRealModuleIdentifier( - "com.bktus.gpgfrontend.module.integrated." - "gnupginfogathering")) { + if (l_id == + "com.bktus.gpgfrontend.module.integrated." + "gnupginfogathering") { SPDLOG_DEBUG( - "gnupginfogathering gnupg.gathering_done changed, restarting gpg " + "gnupg-info-gathering gnupg.gathering_done changed, restarting " + "gpg " "components"); // try to restart all components GpgFrontend::GpgAdvancedOperator::RestartGpgComponents(); |