aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-14 08:55:50 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-02-16 17:58:17 +0100
commit0f6506c022ff1ccaa648ff50b81ae29f5a6f2176 (patch)
tree21117ecc846650f94fe70d975bb7c11ab977fb40
parent53dfa70601b2d27a6be12d52e86af123d0b26b79 (diff)
downloadlibquotient-0f6506c022ff1ccaa648ff50b81ae29f5a6f2176.tar.gz
libquotient-0f6506c022ff1ccaa648ff50b81ae29f5a6f2176.zip
Connection: guard device loading per-object
Using a static variable is incorrect as it doesn't load the device list for any subsequent created Connection object.
-rw-r--r--lib/connection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp
index 3b8da6d1..0562d416 100644
--- a/lib/connection.cpp
+++ b/lib/connection.cpp
@@ -131,6 +131,7 @@ public:
#ifdef Quotient_E2EE_ENABLED
std::unique_ptr<QOlmAccount> olmAccount;
bool isUploadingKeys = false;
+ bool firstSync = true;
#endif // Quotient_E2EE_ENABLED
QPointer<GetWellknownJob> resolverJob = nullptr;
@@ -769,10 +770,9 @@ void Connection::onSyncSuccess(SyncData&& data, bool fromCache)
connect(job, &BaseJob::result, this,
[this] { d->isUploadingKeys = false; });
}
- static bool first = true;
- if(first) {
+ if(d->firstSync) {
d->loadDevicesList();
- first = false;
+ d->firstSync = false;
}
d->consumeDevicesList(data.takeDevicesList());