Switch to upstream olm error code

pull/1379/head
Nicolas Werner 2 years ago
parent 07707e1558
commit a11b1221a3
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
  1. 2
      CMakeLists.txt
  2. 4
      io.github.NhekoReborn.Nheko.yaml
  3. 2
      src/encryption/Olm.cpp

@ -597,7 +597,7 @@ if(USE_BUNDLED_MTXCLIENT)
FetchContent_Declare(
MatrixClient
GIT_REPOSITORY https://github.com/Nheko-Reborn/mtxclient.git
GIT_TAG v0.9.2
GIT_TAG e1a24f3752543d4264cb012a20d84fc9d7229709
)
set(BUILD_LIB_EXAMPLES OFF CACHE INTERNAL "")
set(BUILD_LIB_TESTS OFF CACHE INTERNAL "")

@ -213,8 +213,8 @@ modules:
buildsystem: cmake-ninja
name: mtxclient
sources:
- commit: a9a6087ae820c8fb9332422b094cab8e2301db25
tag: v0.9.2
- commit: e1a24f3752543d4264cb012a20d84fc9d7229709
#tag: v0.9.2
type: git
url: https://github.com/Nheko-Reborn/mtxclient.git
- config-opts:

@ -1262,7 +1262,7 @@ decryptEvent(const MegolmSessionIndex &index,
} catch (const lmdb::error &e) {
return {DecryptionErrorCode::DbError, e.what(), std::nullopt};
} catch (const mtx::crypto::olm_exception &e) {
if (e.error_code() == mtx::crypto::OlmErrorCode::UNKNOWN_MESSAGE_INDEX)
if (e.error_code() == mtx::crypto::OlmErrorCode::OLM_UNKNOWN_MESSAGE_INDEX)
return {DecryptionErrorCode::MissingSessionIndex, e.what(), std::nullopt};
return {DecryptionErrorCode::DecryptionFailed, e.what(), std::nullopt};
}

Loading…
Cancel
Save