mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-12 17:57:29 +00:00
close #1397
This commit is contained in:
parent
8f218b9515
commit
8bb0fba4cb
@ -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…
Reference in New Issue
Block a user