aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2021-01-14 08:27:05 +0100
committerKitsune Ral <Kitsune-Ral@users.sf.net>2021-01-14 08:27:05 +0100
commitb876fa4de3d7f58418bd03935f2336eb9edff3ac (patch)
treed16c4492eb9f208260841de97a706cb67e0f9067
parent7ac0bf044e521be4043c0b545d42323e2f9101a4 (diff)
downloadlibquotient-b876fa4de3d7f58418bd03935f2336eb9edff3ac.tar.gz
libquotient-b876fa4de3d7f58418bd03935f2336eb9edff3ac.zip
EncryptionManager: fix a typo
-rw-r--r--lib/encryptionmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/encryptionmanager.cpp b/lib/encryptionmanager.cpp
index 4a1025b2..2f01c3e7 100644
--- a/lib/encryptionmanager.cpp
+++ b/lib/encryptionmanager.cpp
@@ -245,7 +245,7 @@ void EncryptionManager::uploadOneTimeKeys(Connection* connection,
if (forceUpdate || d->oneTimeKeyCounts.isEmpty()) {
d->uploadOneTimeKeysInitJob = connection->callApi<UploadKeysJob>();
connect(d->uploadOneTimeKeysInitJob, &BaseJob::success, this, [this] {
- d->setOneTimeKeyCounts(d->uploadIdentityKeysJob->oneTimeKeyCounts());
+ d->setOneTimeKeyCounts(d->uploadOneTimeKeyInitJob->oneTimeKeyCounts());
});
}