Fix scrollToBottom for ChatConversation TableView

This commit is contained in:
Benoit Martins 2022-11-17 11:59:20 +01:00 committed by QuentinArguillere
parent 6fa24fff6d
commit 669851065a

View file

@ -675,8 +675,9 @@ static UICompositeViewDescription *compositeDescription = nil;
completion:^(BOOL finished) {
_composeIndicatorView.hidden = !visible;
}];
[_tableController scrollToBottom:TRUE];
if (_tableController.tableView.contentOffset.y + newComposingFrame.size.height >= (_tableController.tableView.contentSize.height - _tableController.tableView.frame.size.height)) {
[_tableController scrollToBottom:TRUE];
}
}
- (BOOL) groupCallAvailable {