Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,595 changes: 1,585 additions & 1,010 deletions android/src/main/java/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt

Large diffs are not rendered by default.

571 changes: 571 additions & 0 deletions android/src/main/java/uniffi/matrix_sdk/matrix_sdk.kt

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,12 @@ enum class ShieldStateCode {
/**
* The sender was previously verified but changed their identity.
*/
VERIFICATION_VIOLATION;
VERIFICATION_VIOLATION,
/**
* The `sender` field on the event does not match the owner of the device
* that established the Megolm session.
*/
MISMATCHED_SENDER;
companion object
}

Expand Down
2,205 changes: 1,540 additions & 665 deletions cpp/generated/matrix_sdk_ffi.cpp

Large diffs are not rendered by default.

293 changes: 211 additions & 82 deletions cpp/generated/matrix_sdk_ffi.hpp

Large diffs are not rendered by default.

Loading
Loading