Skip to content

Commit

Permalink
Fix bug "No parents" not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
teinvdlugt committed May 21, 2016
1 parent eb03a70 commit b05be0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ protected void onPostExecute(Void aVoid) {
} else {
descriptionTV.setText(R.string.no_description_available);
}
if (parentses == null || parentses.isEmpty()) {
if (parentses == null || parentses.get(0).names.isEmpty()) {
parentsTextView.setText(R.string.no_parents);
} else {
setParentTexts();
Expand Down

0 comments on commit b05be0f

Please sign in to comment.