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 changes: 2 additions & 0 deletions bindings/matrix-sdk-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ All notable changes to this project will be documented in this file.

### Features

- Expose `HumanQrGrantLoginError::Unknown` reason in error message.
([#6514](https://github.com/matrix-org/matrix-rust-sdk/pull/6514))
- Add a list of `declined_by: Vec<String>` to the `TimelineItemContent::RtcNotification`, this will contain the list
of users that have declined the call.
([#6494](https://github.com/matrix-org/matrix-rust-sdk/pull/6494))
Expand Down
2 changes: 1 addition & 1 deletion bindings/matrix-sdk-ffi/src/qr_code.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ pub enum HumanQrGrantLoginError {
NotFound,

/// An unknown error has happened.
#[error("An unknown error has happened.")]
#[error("An unknown error has happened: {0}")]
Unknown(String),

/// The requested device was not returned by the homeserver.
Expand Down
Loading