aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/utils/GpgUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/utils/GpgUtils.cpp')
-rw-r--r--src/core/utils/GpgUtils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/utils/GpgUtils.cpp b/src/core/utils/GpgUtils.cpp
index d8f147bb..c8f58889 100644
--- a/src/core/utils/GpgUtils.cpp
+++ b/src/core/utils/GpgUtils.cpp
@@ -294,9 +294,9 @@ auto GetCanonicalKeyDatabasePath(const QDir& app_path,
QFileInfo info(target_path);
if (!info.exists()) {
- LOG_W() << "key database not exists:" << info.canonicalFilePath()
+ LOG_W() << "key database not exists:" << info.absoluteFilePath()
<< ", making a new directory...";
- QDir().mkdir(info.canonicalFilePath());
+ QDir().mkdir(info.absoluteFilePath());
}
if (VerifyKeyDatabasePath(info)) {