diff options
Diffstat (limited to 'Juick/Views/MessageCell.m')
-rw-r--r-- | Juick/Views/MessageCell.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Juick/Views/MessageCell.m b/Juick/Views/MessageCell.m index 963707c..13f33a5 100644 --- a/Juick/Views/MessageCell.m +++ b/Juick/Views/MessageCell.m @@ -35,7 +35,9 @@ if ([msg.repliesBy length] > 0) { self.summary.text = [NSString stringWithFormat:@"%@ replies by %@", msg.repliesCount, msg.repliesBy]; } else { - self.summary.text = [NSString stringWithFormat:@"%@ replies", msg.repliesCount]; + if (msg.repliesCount > 0) { + self.summary.text = [NSString stringWithFormat:@"%@ replies", msg.repliesCount]; + } } } else { self.summary.text = nil; |