You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2020. It is now read-only.
The mesage thread does not reload sometime. I figure out that in IMChatC.m the following code does not get called when user send or recieve any new message 👍 @weakify(self);
[self.viewModel.fetchLaterSignal subscribeNext:^(id x) { @strongify(self);
dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
if ([self isNearbyBottom]) {
[self scrollToBottomAnimated:YES];
}
});
}];
The mesage thread does not reload sometime. I figure out that in IMChatC.m the following code does not get called when user send or recieve any new message 👍
@weakify(self);
[self.viewModel.fetchLaterSignal subscribeNext:^(id x) {
@strongify(self);
dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
if ([self isNearbyBottom]) {
[self scrollToBottomAnimated:YES];
}
});
}];
What should I do to handle it ?
The text was updated successfully, but these errors were encountered: