InviteRecentTableViewCell: Do not show preview button.

This commit is contained in:
SBiOSoftWhare
2020-11-26 18:17:02 +01:00
parent d15ec15b07
commit 0c192a01f0
@@ -108,15 +108,15 @@ NSString *const kInviteRecentTableViewCellRoomKey = @"kInviteRecentTableViewCell
if (room.roomId)
{
[self updateViewsWithRoom:room];
[self updateViewsWithRoom:room showPreviewButton:NO];
}
}
- (void)updateViewsWithRoom:(MXRoom*)room
- (void)updateViewsWithRoom:(MXRoom*)room showPreviewButton:(BOOL)showPreviewButton
{
NSString *rightButtonTitle;
if (room.isDirect)
if (!showPreviewButton)
{
rightButtonTitle = NSLocalizedStringFromTable(@"accept", @"Vector", nil);
[self vc_setAccessoryDisclosureIndicatorWithCurrentTheme];