@ -75,7 +75,7 @@ sourceview = { package = "sourceview5", version = "0.7" }
[dependencies.matrix-sdk]
git = "https://github.com/matrix-org/matrix-rust-sdk.git"
rev = "f945a50d22aabb14e018d74303d6d6d26779d423"
rev = "8895ce40d13faa79012144c97044990284215758"
features = [
"socks",
"sso-login",
@ -86,7 +86,7 @@ features = [
[dependencies.matrix-sdk-ui]
default-features = false
features = ["e2e-encryption", "native-tls"]
@ -126,6 +126,20 @@ impl UserFacingError for oo7::dbus::Error {
oo7::dbus::Error::Deleted => gettext(
"The item was deleted.",
),
oo7::dbus::Error::Service(s) => match s {
oo7::dbus::ServiceError::ZBus(_) => gettext(
"An unknown error occurred when interacting with the D-Bus Secret Service.",
oo7::dbus::ServiceError::IsLocked => gettext(
"The collection or item is locked.",
oo7::dbus::ServiceError::NoSession => gettext(
"The D-Bus Secret Service session does not exist.",
oo7::dbus::ServiceError::NoSuchObject => gettext(
"The collection or item does not exist.",
},
oo7::dbus::Error::Dismissed => gettext(
"The request to the D-Bus Secret Service was cancelled. Make sure to accept any prompt asking to access it.",
@ -1184,10 +1184,7 @@ impl Room {
spawn_tokio!(async move {
matrix_room
.send(
ReactionEventContent::new(Annotation::new(relates_to, key)),
None,
)
.send(ReactionEventContent::new(Annotation::new(relates_to, key)))
.await
})