diff options
author | Vitaly Takmazov | 2017-12-04 00:20:02 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-12-04 00:20:02 +0300 |
commit | 3c680cfe8c1e6cfbce16f787fbf01fdb3f7c40ae (patch) | |
tree | 51c90370eae5c622ab305bc4bd7eb0a34fd96f2a /Juick/ViewControllers/MessagesViewController.m | |
parent | ccf06c2af74f63e5276e15f3e10acf74bf4174f7 (diff) |
WIP
Diffstat (limited to 'Juick/ViewControllers/MessagesViewController.m')
-rw-r--r-- | Juick/ViewControllers/MessagesViewController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/ViewControllers/MessagesViewController.m b/Juick/ViewControllers/MessagesViewController.m index 5a5a794..71f4271 100644 --- a/Juick/ViewControllers/MessagesViewController.m +++ b/Juick/ViewControllers/MessagesViewController.m @@ -117,7 +117,7 @@ if (lastMsg != nil) { NSNumber *lastMid = lastMsg.mid; if (![self.path isEqualToString:[APIClient threadUrl]]) { - [self.params setObject:lastMid forKey:@"before_mid"]; + self.params = [@{@"before_mid":lastMid} mutableCopy]; } [self refreshData]; } |