diff options
author | Tobias Fella <9750016+TobiasFella@users.noreply.github.com> | 2022-02-06 20:10:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 20:10:40 +0100 |
commit | 4837fd6de188b849a5d11de6791ba844398ce415 (patch) | |
tree | 1b2e33085e77620306db352ef07eaa5f0ddb116d | |
parent | ef64359505778913235666f0e759dd0758f7f4ac (diff) | |
download | libquotient-4837fd6de188b849a5d11de6791ba844398ce415.tar.gz libquotient-4837fd6de188b849a5d11de6791ba844398ce415.zip |
Update lib/e2ee/qolmaccount.cpp
Co-authored-by: Alexey Rusakov <Kitsune-Ral@users.sf.net>
-rw-r--r-- | lib/e2ee/qolmaccount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/e2ee/qolmaccount.cpp b/lib/e2ee/qolmaccount.cpp index a984f884..34ee7ea0 100644 --- a/lib/e2ee/qolmaccount.cpp +++ b/lib/e2ee/qolmaccount.cpp @@ -29,7 +29,7 @@ std::optional<QMap<QString, QString>> OneTimeKeys::get(QString keyType) const bool operator==(const IdentityKeys& lhs, const IdentityKeys& rhs) { - return lhs.curve25519 == rhs.curve25519 &&& lhs.ed25519 == rhs.ed25519; + return lhs.curve25519 == rhs.curve25519 && lhs.ed25519 == rhs.ed25519; } // Convert olm error to enum |