Browse Source

Fix compile error

renovate/org.robolectric-robolectric-4.x
Ammar Githam 4 years ago
parent
commit
4f8de4e7df
  1. 4
      app/src/main/java/awais/instagrabber/viewmodels/CommentsViewerViewModel.java

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

@ -67,7 +67,7 @@ public class CommentsViewerViewModel extends ViewModel {
public void onSuccess(final CommentsFetchResponse result) {
// Log.d(TAG, "onSuccess: " + result);
if (result == null) {
rootList.postValue(Resource.error(t.getMessage(), getPrevList(rootList)));
rootList.postValue(Resource.error(R.string.generic_null_response, getPrevList(rootList)));
return;
}
List<Comment> comments = result.getComments();
@ -93,7 +93,7 @@ public class CommentsViewerViewModel extends ViewModel {
public void onSuccess(final ChildCommentsFetchResponse result) {
// Log.d(TAG, "onSuccess: " + result);
if (result == null) {
rootList.postValue(Resource.error(t.getMessage(), getPrevList(replyList)));
rootList.postValue(Resource.error(R.string.generic_null_response, getPrevList(replyList)));
return;
}
List<Comment> comments = result.getChildComments();

Loading…
Cancel
Save