From dffd776aceae14827f5812dc5f77a1eb909c6bda Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Thu, 16 Nov 2017 16:59:25 -0500 Subject: [PATCH] Increase the max text message length. --- .../src/ViewControllers/ConversationView/ConversationViewItem.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/ConversationView/ConversationViewItem.m b/Signal/src/ViewControllers/ConversationView/ConversationViewItem.m index b41dc85c3..a3492ab01 100644 --- a/Signal/src/ViewControllers/ConversationView/ConversationViewItem.m +++ b/Signal/src/ViewControllers/ConversationView/ConversationViewItem.m @@ -310,7 +310,7 @@ NSString *NSStringForOWSMessageCellType(OWSMessageCellType cellType) NSString *text = textBlock(); // Only show up to N characters of text. - const NSUInteger kMaxTextDisplayLength = 512; + const NSUInteger kMaxTextDisplayLength = 1024; NSString *_Nullable fullText = [DisplayableText displayableText:text]; BOOL isTextTruncated = NO; if (!fullText) {