summaryrefslogtreecommitdiff
path: root/Juick
diff options
context:
space:
mode:
Diffstat (limited to 'Juick')
-rw-r--r--Juick/Supporting Files/Juick-Prefix.pch1
-rw-r--r--Juick/Views/MessageCell.m3
2 files changed, 1 insertions, 3 deletions
diff --git a/Juick/Supporting Files/Juick-Prefix.pch b/Juick/Supporting Files/Juick-Prefix.pch
index 2f4b637..4340a61 100644
--- a/Juick/Supporting Files/Juick-Prefix.pch
+++ b/Juick/Supporting Files/Juick-Prefix.pch
@@ -18,7 +18,6 @@
#import <UserNotifications/UserNotifications.h>
#import <PDKeychainBindingsController/PDKeychainBindingsController.h>
- #import <NSString+HTML.h>
#import "UIImage+Utils.h"
#import <AFNetworking/AFNetworking.h>
#import <AFNetworking/UIImageView+AFNetworking.h>
diff --git a/Juick/Views/MessageCell.m b/Juick/Views/MessageCell.m
index b9e40c8..4637f80 100644
--- a/Juick/Views/MessageCell.m
+++ b/Juick/Views/MessageCell.m
@@ -74,8 +74,7 @@
self.text.attributedText = nil;
if (msg.text) {
NSMutableAttributedString *txt = [[NSMutableAttributedString alloc]
- initWithString:
- [msg.text stringByDecodingHTMLEntities]
+ initWithString:msg.text
attributes:@{NSFontAttributeName:[UIFont preferredFontForTextStyle:UIFontTextStyleBody]}];
[txt beginEditing];
for (NSDictionary *entity in msg.entities) {