summaryrefslogtreecommitdiff
path: root/Juick/MessageCell.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-08-14 01:05:08 +0300
committerGravatar Vitaly Takmazov2016-08-14 01:05:08 +0300
commit2b5477f18d855820a9c17993b7c0906321fb3cef (patch)
tree30d5eaf2109bf68a3f8e3a22f1fb422f9603b0f3 /Juick/MessageCell.m
parent7db95c4a3ace04c871283831e4ca9c2d0fefea72 (diff)
fix compilation
Diffstat (limited to 'Juick/MessageCell.m')
-rw-r--r--Juick/MessageCell.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/MessageCell.m b/Juick/MessageCell.m
index d47c3d2..9994e78 100644
--- a/Juick/MessageCell.m
+++ b/Juick/MessageCell.m
@@ -151,7 +151,7 @@
- (void) setMessage:(Message *)msg {
_message = msg;
- [self.avatar setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://i.juick.com/as/%d.png", [msg.userID intValue]]] placeholderImage:[UIImage imageNamed:@"0.png"] options:SDWebImageContinueInBackground];
+ [self.avatar setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://i.juick.com/a/%d.png", [msg.userID intValue]]] placeholderImage:[UIImage imageNamed:@"0.png"] options:SDWebImageContinueInBackground];
self.titleLabel.text = msg.user;
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";