Skip to content

Commit 48fff04

Browse files
committed
Merge branch 'enable_ruma_unstable_pre_spec'
2 parents 8414718 + 0dd6239 commit 48fff04

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/matrix-sdk-base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional =
6464
[dependencies.ruma]
6565
git = "https://github.com/ruma/ruma/"
6666
rev = "b9f32bc6327542d382d4eb42ec43623495c50e66"
67-
features = ["client-api-c"]
67+
features = ["client-api-c", "unstable-pre-spec"]
6868

6969
[dev-dependencies]
7070
futures = { version = "0.3.15", default-features = false, features = ["executor"] }

crates/matrix-sdk-base/src/rooms/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl BaseRoomInfo {
7979
true
8080
}
8181
AnyStateEventContent::RoomAvatar(a) => {
82-
self.avatar_url = Some(a.url.clone());
82+
self.avatar_url = a.url.clone();
8383
true
8484
}
8585
AnyStateEventContent::RoomName(n) => {

crates/matrix-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ default_features = false
101101
[dependencies.ruma]
102102
git = "https://github.com/ruma/ruma/"
103103
rev = "b9f32bc6327542d382d4eb42ec43623495c50e66"
104-
features = ["client-api-c", "compat", "rand", "unstable-msc2448"]
104+
features = ["client-api-c", "compat", "rand", "unstable-msc2448", "unstable-pre-spec"]
105105

106106
[dependencies.tokio-stream]
107107
version = "0.1.6"

0 commit comments

Comments
 (0)