diff options
author | Vitaly Takmazov | 2019-03-25 16:07:22 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-03-25 16:07:22 +0300 |
commit | 72fbd1b82041082dfb25cfdf0f28db65fd1c878a (patch) | |
tree | da00ae2f01af038da435342ee7282fe8575c7e4d /Juick/ViewControllers/DiscoverViewController.m | |
parent | 163a79e2aa4df23638686ca0608cdbaf6e6dad6f (diff) |
Scroll to reply from notification
Diffstat (limited to 'Juick/ViewControllers/DiscoverViewController.m')
-rw-r--r-- | Juick/ViewControllers/DiscoverViewController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Juick/ViewControllers/DiscoverViewController.m b/Juick/ViewControllers/DiscoverViewController.m index f75e7d5..7bf9f74 100644 --- a/Juick/ViewControllers/DiscoverViewController.m +++ b/Juick/ViewControllers/DiscoverViewController.m @@ -18,7 +18,7 @@ self.messagesDelegate = self; self.title = @"Discover"; self.path = [APIClient messagesUrl]; - [self setShouldScrollToBottomOnRefresh:NO]; + [self setShouldScrollToUnreadOnRefresh:NO]; [super viewDidLoad]; } @@ -27,7 +27,7 @@ if (lastMsg != nil) { NSNumber *lastMid = lastMsg.mid; self.params = [@{@"before_mid":lastMid} mutableCopy]; - [self setShouldScrollToBottomOnRefresh:NO]; + [self setShouldScrollToUnreadOnRefresh:NO]; [self refreshData]; } } |