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:
authorFabian Müller <fmueller@owncloud.com>2022-05-05 18:30:36 +0300
committerHannah von Reth <vonreth@kde.org>2022-05-06 11:52:59 +0300
commitc51bb68bcf0e09bbea321e196acbc7a5b38c2598 (patch)
treec2d24478c0f79a663107017bdc856cc06fdc5f43 /src/gui/proxyauthhandler.cpp
parentb11db0e25f99ddb0b91f717eec0e9d9320a6c406 (diff)
Expose AccessManager from account
Needed to be able to access planned TLS certificate handling related methods.
Diffstat (limited to 'src/gui/proxyauthhandler.cpp')
-rw-r--r--src/gui/proxyauthhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/proxyauthhandler.cpp b/src/gui/proxyauthhandler.cpp
index 66ef36b7a..c96b5f4f7 100644
--- a/src/gui/proxyauthhandler.cpp
+++ b/src/gui/proxyauthhandler.cpp
@@ -88,7 +88,7 @@ void ProxyAuthHandler::handleProxyAuthenticationRequired(
// Since we go into an event loop, it's possible for the account's qnam
// to be destroyed before we get back. We can use this to check for its
// liveness.
- sending_qnam = account->sharedNetworkAccessManager().data();
+ sending_qnam = account->sharedAccessManager().data();
}
if (!sending_qnam) {
qCWarning(lcProxy) << "Could not get the sending QNAM for" << sender();