Chat Screen: Bug Fix: Pagination title is missing for incoming bubble

This commit is contained in:
giomfo
2015-12-15 17:20:44 +01:00
parent 3b5db63660
commit d445c1bc5e
2 changed files with 20 additions and 0 deletions
@@ -18,4 +18,14 @@
@implementation RoomIncomingAttachmentWithPaginationTitleBubbleCell
- (void)render:(MXKCellData *)cellData
{
[super render:cellData];
if (self.bubbleData)
{
self.paginationLabel.text = [self.bubbleData.eventFormatter dateStringFromDate:self.bubbleData.date withTime:NO];
}
}
@end
@@ -18,4 +18,14 @@
@implementation RoomIncomingTextMsgWithPaginationTitleBubbleCell
- (void)render:(MXKCellData *)cellData
{
[super render:cellData];
if (self.bubbleData)
{
self.paginationLabel.text = [self.bubbleData.eventFormatter dateStringFromDate:self.bubbleData.date withTime:NO];
}
}
@end