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
path: root/src
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2020-09-14 12:04:45 +0300
committerHannah von Reth <vonreth@kde.org>2020-09-14 12:57:39 +0300
commite2ce1464ae6c703a3b0fbfaf48307a210396a53d (patch)
treed582f9a38b2183d2bb3b8556b354453bc0ef2967 /src
parentf89580bfe0a8b7eb8fa9a5e5be7d1de8ca49e343 (diff)
Don't clear cookies during oauth
The cookies are required by the load balancer and there for a reason. Since #6574 we fixed the back button in https://github.com/owncloud/client/pull/8056 . Fixes: #8072
Diffstat (limited to 'src')
-rw-r--r--src/libsync/creds/oauth.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsync/creds/oauth.cpp b/src/libsync/creds/oauth.cpp
index dd753ce4d..00e3a84e2 100644
--- a/src/libsync/creds/oauth.cpp
+++ b/src/libsync/creds/oauth.cpp
@@ -375,7 +375,6 @@ void OAuth::fetchWellKnown()
void OAuth::openBrowser()
{
- _account->clearCookieJar(); // #6574
authorisationLinkAsync([this](const QUrl &link) {
if (!QDesktopServices::openUrl(link)) {
qCWarning(lcOauth) << "QDesktopServices::openUrl Failed";