Skip to content

Commit

Permalink
fix the bug that can't see default comment of issue if there are only…
Browse files Browse the repository at this point in the history
… have default comment
  • Loading branch information
ThirtyDegreesRay committed Feb 8, 2018
1 parent 090434d commit b9b28c2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,8 @@ public void onSuccess(HttpResponse<ArrayList<IssueEvent>> response) {
}
if(response.body().size() == 0 && timeline.size() != 0){
mView.setCanLoadMore(false);
} else {
mView.showTimeline(timeline);
}
mView.showTimeline(timeline);
}
};
generalRxHttpExecute(new IObservableCreator<ArrayList<IssueEvent>>() {
Expand Down

0 comments on commit b9b28c2

Please sign in to comment.