summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-03-24 12:02:47 +0300
committerGravatar Vitaly Takmazov2019-03-24 12:02:47 +0300
commit61cf26b3959a975816d10c54db00fb9a16c02e65 (patch)
tree80902ba0432bea8c0fed6524ee58fac37cd2513d
parent5169dc03ee6d7303dc15d311f88424bd2d65a5a1 (diff)
Fix discover scrolling
-rw-r--r--Juick/ViewControllers/DiscoverViewController.m4
-rw-r--r--Juick/ViewControllers/FeedViewController.m9
2 files changed, 4 insertions, 9 deletions
diff --git a/Juick/ViewControllers/DiscoverViewController.m b/Juick/ViewControllers/DiscoverViewController.m
index 7fb2805..f75e7d5 100644
--- a/Juick/ViewControllers/DiscoverViewController.m
+++ b/Juick/ViewControllers/DiscoverViewController.m
@@ -25,8 +25,8 @@
- (void)loadMore {
Message *lastMsg = [self.messages lastObject];
if (lastMsg != nil) {
- NSDate *msgDate = [[APIClient sharedClient].dateFormatter dateFromString:lastMsg.timestamp];
- self.params = [@{@"to" : [NSString stringWithFormat:@"%.0f", [msgDate timeIntervalSince1970] * 1000]} mutableCopy];
+ NSNumber *lastMid = lastMsg.mid;
+ self.params = [@{@"before_mid":lastMid} mutableCopy];
[self setShouldScrollToBottomOnRefresh:NO];
[self refreshData];
}
diff --git a/Juick/ViewControllers/FeedViewController.m b/Juick/ViewControllers/FeedViewController.m
index f664f62..fc8c387 100644
--- a/Juick/ViewControllers/FeedViewController.m
+++ b/Juick/ViewControllers/FeedViewController.m
@@ -38,13 +38,8 @@
-(void) loadMore {
Message *lastMsg = [self.messages lastObject];
if (lastMsg != nil) {
- if ([self.path isEqualToString:[APIClient discussionsUrl]]) {
- NSDate *msgDate = [[APIClient sharedClient].dateFormatter dateFromString:lastMsg.timestamp];
- self.params = [@{@"to" : [NSString stringWithFormat:@"%.0f", [msgDate timeIntervalSince1970] * 1000]} mutableCopy];
- } else if (![self.path isEqualToString:[APIClient threadUrl]]) {
- NSNumber *lastMid = lastMsg.mid;
- self.params = [@{@"before_mid":lastMid} mutableCopy];
- }
+ NSNumber *lastMid = lastMsg.mid;
+ self.params = [@{@"before_mid":lastMid} mutableCopy];
[self setShouldScrollToBottomOnRefresh:NO];
[self refreshData];
}