vector-im/element-ios/issues/6149 - Allow video rooms to be shown in the rooms list

This commit is contained in:
Stefan Ceriu 2022-05-13 17:01:59 +03:00 committed by Stefan Ceriu
parent 5da4330732
commit 4a98b7134a
2 changed files with 4 additions and 2 deletions

View file

@ -470,9 +470,10 @@ static NSString *const kEventFormatterTimeFormat = @"HH:mm";
self.emojiOnlyTextFont = [UIFont systemFontOfSize:48];
self.editionMentionTextFont = [UIFont systemFontOfSize:12];
// Handle space room type, enables to show space in room list
// Handle space and video room types, enables their display in the room list
defaultRoomSummaryUpdater.showRoomTypeStrings = @[
MXRoomTypeStringSpace
MXRoomTypeStringSpace,
MXRoomTypeStringVideo
];
}
return self;

1
changelog.d/6149.feature Normal file
View file

@ -0,0 +1 @@
Allow video rooms to be shown in the rooms list.