Skip to content

Commit

Permalink
dont show nullnull in quick view
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHasse committed Dec 20, 2024
1 parent cddbde4 commit c533d73
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,6 @@ private void populateCellTable(CellInformation signalStrength, TableLayout tl, b
}, displayNull);
break;
}


}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private void modifyTextView(MaterialTextView textView, String value,
int min, int minColor,
int max, int maxColor) {
textView.setText(value);
if(value.equals(String.valueOf(Integer.MAX_VALUE))) {
if (value.equals(String.valueOf(Integer.MAX_VALUE)) || value.equals("nullnull")) {
textView.setText("N/A");
return;
}
Expand Down

0 comments on commit c533d73

Please sign in to comment.