diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-14 08:40:55 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-14 08:40:55 +0100 |
commit | d123822b2d0eb2854f1bcdb98c1cfa4f0257ed43 (patch) | |
tree | ea23999e65d5c610acd260f1419291b025350f08 | |
parent | b876fa4de3d7f58418bd03935f2336eb9edff3ac (diff) | |
download | libquotient-d123822b2d0eb2854f1bcdb98c1cfa4f0257ed43.tar.gz libquotient-d123822b2d0eb2854f1bcdb98c1cfa4f0257ed43.zip |
Fix a typo in the previous typo fix
-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 2f01c3e7..e585fae8 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->uploadOneTimeKeyInitJob->oneTimeKeyCounts()); + d->setOneTimeKeyCounts(d->uploadOneTimeKeysInitJob->oneTimeKeyCounts()); }); } |