reduce initial loading on conversation screen

pull/541/head
Ryan Zhao 3 years ago
parent 2ae0ae40d4
commit ec40922cb4

@ -777,9 +777,8 @@ final class ConversationVC : BaseVC, ConversationViewModelDelegate, OWSConversat
func autoLoadMoreIfNeeded() {
let isMainAppAndActive = CurrentAppContext().isMainAppAndActive
guard isMainAppAndActive && viewModel.canLoadMoreItems() && !isLoadingMore
guard isMainAppAndActive && didFinishInitialLayout && viewModel.canLoadMoreItems() && !isLoadingMore
&& messagesTableView.contentOffset.y < ConversationVC.loadMoreThreshold else { return }
print("Ryan: auto loading more")
isLoadingMore = true
viewModel.loadAnotherPageOfMessages()
}

Loading…
Cancel
Save