diff options
author | Vitaly Takmazov | 2019-03-24 11:41:10 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-03-24 11:43:02 +0300 |
commit | aab91a39e9e24994d01adc4094dfe0bbd566d121 (patch) | |
tree | 37e84e11a359f4e7a8aa17a31c02f71b4172d96c /Juick/ViewControllers/ThreadViewController.m | |
parent | e16eb980016b370f16bb8315434152decc1239b3 (diff) |
Fix inifinite scrolling
Diffstat (limited to 'Juick/ViewControllers/ThreadViewController.m')
-rw-r--r-- | Juick/ViewControllers/ThreadViewController.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Juick/ViewControllers/ThreadViewController.m b/Juick/ViewControllers/ThreadViewController.m index 44f9e8a..48999b4 100644 --- a/Juick/ViewControllers/ThreadViewController.m +++ b/Juick/ViewControllers/ThreadViewController.m @@ -37,6 +37,7 @@ -(void) loadMore { Message *lastMsg = [self.messages lastObject]; [self setShouldScrollToBottomOnRefresh:lastMsg.rid > 0]; + [self refreshData]; } @end |