Seem like the custom timestamp is broken.

This commit is contained in:
Kyle Fang
2013-07-25 12:54:33 +08:00
parent 1d0ec22e3e
commit 1a5b8d197c

View File

@@ -215,7 +215,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;
}