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>2022-02-25 18:58:01 +0300
committerHannah von Reth <vonreth@kde.org>2022-02-25 19:49:27 +0300
commit325b155b3ce8eae231c54cdd45e2999be73ff234 (patch)
tree9c4b8288a409fe2b1f868e1e86e41479a25fb9da /src/libsync/creds
parent60c88ff1cdd4c361f9bf4a80f60bb99c33b3fd11 (diff)
Fix randomly failing unit test by initialising member
Diffstat (limited to 'src/libsync/creds')
-rw-r--r--src/libsync/creds/oauth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/creds/oauth.h b/src/libsync/creds/oauth.h
index 2de875900..9dead77d2 100644
--- a/src/libsync/creds/oauth.h
+++ b/src/libsync/creds/oauth.h
@@ -96,7 +96,7 @@ protected:
QString _davUser;
QVariantMap _dynamicRegistrationData;
QNetworkAccessManager *_networkAccessManager;
- bool _isRefreshingToken;
+ bool _isRefreshingToken = false;
virtual void fetchWellKnown();