1
0
mirror of https://github.com/KokaKiwi/BarInsta synced 2024-09-27 21:27:30 +00:00
This commit is contained in:
Austin Huang 2021-06-11 12:24:25 -04:00
parent 8f218b9515
commit 8bb0fba4cb
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F

View File

@ -66,6 +66,10 @@ public class CommentsViewerViewModel extends ViewModel {
@Override
public void onSuccess(final CommentsFetchResponse result) {
// Log.d(TAG, "onSuccess: " + result);
if (result == null) {
rootList.postValue(Resource.error(t.getMessage(), getPrevList(rootList)));
return;
}
List<Comment> comments = result.getComments();
if (rootCursor == null) {
rootCount.postValue(result.getCommentCount());
@ -88,6 +92,10 @@ public class CommentsViewerViewModel extends ViewModel {
@Override
public void onSuccess(final ChildCommentsFetchResponse result) {
// Log.d(TAG, "onSuccess: " + result);
if (result == null) {
rootList.postValue(Resource.error(t.getMessage(), getPrevList(replyList)));
return;
}
List<Comment> comments = result.getChildComments();
// Replies
if (repliesCursor == null) {