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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2020-01-16 19:42:05 +0300
committerHannah von Reth <vonreth@kde.org>2020-01-24 16:00:43 +0300
commite113f8069ed14e6352f1fe93d68a39f09dc97a74 (patch)
treeeb9ea05d69b4d7749809ec44e001515bea76fea2 /src/gui/creds
parentd0943439b7e6b6c001e3097471927358a14ad0cc (diff)
Oauth: Cleanup
Diffstat (limited to 'src/gui/creds')
-rw-r--r--src/gui/creds/httpcredentialsgui.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gui/creds/httpcredentialsgui.cpp b/src/gui/creds/httpcredentialsgui.cpp
index 88c5a01b3..c1592d0b9 100644
--- a/src/gui/creds/httpcredentialsgui.cpp
+++ b/src/gui/creds/httpcredentialsgui.cpp
@@ -48,7 +48,6 @@ void HttpCredentialsGui::askFromUserAsync()
QObject::connect(job, &DetermineAuthTypeJob::authType, this, [this](DetermineAuthTypeJob::AuthType type) {
if (type == DetermineAuthTypeJob::OAuth) {
_asyncAuth.reset(new OAuth(_account, this));
- _asyncAuth->_expectedUser = _account->davUser();
connect(_asyncAuth.data(), &OAuth::result,
this, &HttpCredentialsGui::asyncAuthResult);
connect(_asyncAuth.data(), &OAuth::destroyed,