Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Goetz <markus@woboq.com>2017-01-02 10:34:02 +0300
committerGitHub <noreply@github.com>2017-01-02 10:34:02 +0300
commitc6f4f446192e5f11df80186e391b636471c15984 (patch)
tree016ab7caac2880607a416e59fcd26f25a149eb96 /src/gui/accountmanager.cpp
parent0865c6374523ba9c26f6620efa8ff5a0e54a4d3f (diff)
Fix up SSL client certificates #5213 #69 (#5289)
The re-enables the UI, uses Qt API for importing and stores the certificate/key in the system keychain. People who had set up client certs need to re-setup the account. This is ok since it was an undocumented feature anyway.
Diffstat (limited to 'src/gui/accountmanager.cpp')
-rw-r--r--src/gui/accountmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/accountmanager.cpp b/src/gui/accountmanager.cpp
index 0c1275c60..86f5ca256 100644
--- a/src/gui/accountmanager.cpp
+++ b/src/gui/accountmanager.cpp
@@ -237,7 +237,7 @@ AccountPtr AccountManager::loadAccountHelper(QSettings& settings)
acc->setCredentials(CredentialsFactory::create(authType));
- // now the cert, it is in the general group
+ // now the server cert, it is in the general group
settings.beginGroup(QLatin1String("General"));
acc->setApprovedCerts(QSslCertificate::fromData(settings.value(caCertsKeyC).toByteArray()));
settings.endGroup();