mirror of
https://github.com/youwen5/iamb.git
synced 2025-06-19 21:29:52 -07:00
Allow spaces to be searched by name (#404)
This commit is contained in:
parent
af96bfbb41
commit
fd3fef5c9e
1 changed files with 2 additions and 2 deletions
|
@ -1056,7 +1056,7 @@ impl RoomLikeItem for RoomItem {
|
||||||
|
|
||||||
impl Display for RoomItem {
|
impl Display for RoomItem {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
write!(f, ":verify request {}", self.name)
|
write!(f, "{}", self.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1263,7 +1263,7 @@ impl RoomLikeItem for SpaceItem {
|
||||||
|
|
||||||
impl Display for SpaceItem {
|
impl Display for SpaceItem {
|
||||||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
||||||
write!(f, ":verify request {}", self.room_id())
|
write!(f, "{}", self.name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue