Browse Source

close #1397

renovate/org.robolectric-robolectric-4.x
Austin Huang 3 years ago
parent
commit
8bb0fba4cb
No known key found for this signature in database GPG Key ID: 84C23AA04587A91F
  1. 8
      app/src/main/java/awais/instagrabber/viewmodels/CommentsViewerViewModel.java

8
app/src/main/java/awais/instagrabber/viewmodels/CommentsViewerViewModel.java

@ -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) {

Loading…
Cancel
Save