aboutsummaryrefslogtreecommitdiffstats
path: root/gpgcontext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gpgcontext.cpp')
-rw-r--r--gpgcontext.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/gpgcontext.cpp b/gpgcontext.cpp
index 8de7d9c..aa2c3da 100644
--- a/gpgcontext.cpp
+++ b/gpgcontext.cpp
@@ -211,12 +211,16 @@ KgpgCore::KgpgKey GpgContext::getKeyDetails(QString uid) {
//KgpgCore::KgpgKey key;
// try secret
+ /*qDebug() << "blubb";
KgpgCore::KgpgKey key = KgpgInterface::readSecretKeys(QStringList() << uid).first();
+ qDebug() << "bla";
+ qDebug() << "id: " << key.id();
+
// ok, its a public key
- if (key.id() == "") {
+ if (key.id() == "") {*/
KgpgCore::KgpgKey key = KgpgInterface::readPublicKeys(QStringList() << uid).first();
- }
+ //}
return key;
}