From 0c35d513f852d40d8c6c382e2750373b57afe0cd Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Mon, 12 Nov 2018 15:06:33 +0300 Subject: Fix quote line breaks --- Juick/Supporting Files/Juick-Info.plist | 2 +- Juick/Views/MessageCell.m | 5 ++++- JuickPush/Info.plist | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Juick/Supporting Files/Juick-Info.plist b/Juick/Supporting Files/Juick-Info.plist index 75e1360..a7b5d3c 100644 --- a/Juick/Supporting Files/Juick-Info.plist +++ b/Juick/Supporting Files/Juick-Info.plist @@ -21,7 +21,7 @@ CFBundleSignature ???? CFBundleVersion - 81 + 82 ITSAppUsesNonExemptEncryption LSApplicationCategoryType diff --git a/Juick/Views/MessageCell.m b/Juick/Views/MessageCell.m index 99fb296..f9c9746 100644 --- a/Juick/Views/MessageCell.m +++ b/Juick/Views/MessageCell.m @@ -73,7 +73,10 @@ } self.text.attributedText = nil; if (msg.text) { - NSMutableAttributedString *txt = [[NSMutableAttributedString alloc] initWithString:[msg.text stringByDecodingHTMLEntities] attributes:@{NSFontAttributeName:[UIFont preferredFontForTextStyle:UIFontTextStyleBody]}]; + NSMutableAttributedString *txt = [[NSMutableAttributedString alloc] + initWithString: + [[msg.text stringByDecodingHTMLEntities] stringByReplacingOccurrencesOfString:@"\n" withString:@"\r\n"] + attributes:@{NSFontAttributeName:[UIFont preferredFontForTextStyle:UIFontTextStyleBody]}]; [txt beginEditing]; for (NSDictionary *entity in msg.entities) { NSUInteger start = [[entity objectForKey:@"start"] unsignedIntegerValue]; diff --git a/JuickPush/Info.plist b/JuickPush/Info.plist index 7e04d54..edceecb 100644 --- a/JuickPush/Info.plist +++ b/JuickPush/Info.plist @@ -19,7 +19,7 @@ CFBundleShortVersionString 1.0 CFBundleVersion - 81 + 82 NSExtension NSExtensionPointIdentifier -- cgit v1.2.3