tmszdmsk / arij

another really interesting Jira client for Android
8 stars 5 forks source link

App crash (not filled fields) #30

Open svettermann opened 9 years ago

svettermann commented 9 years ago

The App crashes on showing an issue with not filled the field "priority" or "assignee".

svettermann commented 9 years ago

Changing com.tadamski.arij.issue.single.activity.single.view.IssueFragment.java

Line 205 : basicProperties.add(new IssueProperty("priority", "Priority", issue.getPriority() != null ? issue.getPriority().getName() : "none", null)); Line 215: people.add(new IssueProperty("assignee", "Assignee", issue.getAssignee() != null ? issue.getAssignee().getDisplayName() : "none", null));

should do the trick.