Remove additional directRoomBorderView from RecentRoomTableViewCell (share extension).

This commit is contained in:
Doug
2021-08-12 10:03:49 +01:00
parent 9a45b38730
commit 6f3adbc7c6
2 changed files with 7 additions and 24 deletions
@@ -23,7 +23,6 @@
@interface RecentRoomTableViewCell ()
@property (weak, nonatomic) IBOutlet MXKImageView *avatarImageView;
@property (weak, nonatomic) IBOutlet UIView *directRoomBorderView;
@property (weak, nonatomic) IBOutlet UILabel *roomTitleLabel;
@property (weak, nonatomic) IBOutlet UIImageView *encryptedRoomIcon;
@@ -79,7 +78,6 @@
self.roomTitleLabel.text = [NSBundle mxk_localizedStringForKey:@"room_displayname_empty_room"];
}
self.directRoomBorderView.hidden = !roomCellData.roomSummary.isDirect;
self.encryptedRoomIcon.hidden = YES;
}
}