Revert "Revert "Seem like the custom timestamp is broken.""

This reverts commit 0a40077e23.
This commit is contained in:
Kyle Fang
2013-07-25 14:37:39 +08:00
parent 82b5e7d52c
commit f4ad00b3b8

View File

@@ -223,7 +223,11 @@
return indexPath.row % 5 == 0;
break;
case JSMessagesViewTimestampPolicyCustom:
return NO;
if ([self.delegate hasTimestampForRowAtIndexPath:indexPath]) {
return [self.delegate hasTimestampForRowAtIndexPath:indexPath];
} else {
return NO;
}
break;
}