diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-14 08:27:05 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-14 08:27:05 +0100 |
commit | b876fa4de3d7f58418bd03935f2336eb9edff3ac (patch) | |
tree | d16c4492eb9f208260841de97a706cb67e0f9067 /lib/encryptionmanager.cpp | |
parent | 7ac0bf044e521be4043c0b545d42323e2f9101a4 (diff) | |
download | libquotient-b876fa4de3d7f58418bd03935f2336eb9edff3ac.tar.gz libquotient-b876fa4de3d7f58418bd03935f2336eb9edff3ac.zip |
EncryptionManager: fix a typo
Diffstat (limited to 'lib/encryptionmanager.cpp')
-rw-r--r-- | lib/encryptionmanager.cpp | 2 |
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()); }); } |