Skip to content

Commit

Permalink
Crash at repositories issues & commits & projects FIXED
Browse files Browse the repository at this point in the history
  • Loading branch information
phansier authored and UEvgeniy committed Jan 20, 2018
1 parent c73bfad commit f2e7240
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ private void updateFilterSummary() {
} else
labels.setVisibility(GONE);

Milestone filterMilestone = filter.getMilestone().getOldModel();
com.github.mobile.api.model.Milestone newFilterMs = filter.getMilestone();
Milestone filterMilestone = newFilterMs == null ? null : newFilterMs.getOldModel();
if (filterMilestone != null) {
milestone.setText(filterMilestone.getTitle());
milestone.setVisibility(VISIBLE);
Expand Down

0 comments on commit f2e7240

Please sign in to comment.