matrix-sdk: (fix) use macro for matching in are_events_visible
parent
ae5be67322
commit
58369fe7d0
|
@ -184,10 +184,10 @@ impl Common {
|
||||||
|
|
||||||
fn are_events_visible(&self) -> bool {
|
fn are_events_visible(&self) -> bool {
|
||||||
if let RoomType::Invited = self.inner.room_type() {
|
if let RoomType::Invited = self.inner.room_type() {
|
||||||
return match self.inner.history_visibility() {
|
return matches!(
|
||||||
HistoryVisibility::WorldReadable | HistoryVisibility::Invited => true,
|
self.inner.history_visibility(),
|
||||||
_ => false,
|
HistoryVisibility::WorldReadable | HistoryVisibility::Invited
|
||||||
};
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
true
|
true
|
||||||
|
|
Loading…
Reference in New Issue