diff options
author | Vitaly Takmazov | 2018-11-12 15:06:33 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-11-12 15:06:33 +0300 |
commit | 0c35d513f852d40d8c6c382e2750373b57afe0cd (patch) | |
tree | 6a919f569d324d8320a46a9983df9595bb4e735a /Juick | |
parent | b6dc38e5f6bb7a1b820cd23d761484610212c11d (diff) |
Fix quote line breaks
Diffstat (limited to 'Juick')
-rw-r--r-- | Juick/Supporting Files/Juick-Info.plist | 2 | ||||
-rw-r--r-- | Juick/Views/MessageCell.m | 5 |
2 files changed, 5 insertions, 2 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 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>81</string> + <string>82</string> <key>ITSAppUsesNonExemptEncryption</key> <false/> <key>LSApplicationCategoryType</key> 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]; |