Fix a crash when displaying Home cache charts

This commit is contained in:
Thomas 2025-03-24 07:38:27 +01:00
parent 524fb7dd2a
commit a9c50ab41f

View file

@ -202,7 +202,7 @@ public class CheckHomeCacheActivity extends BaseBarActivity {
IndexAxisValueFormatter formatter = new IndexAxisValueFormatter() {
@Override
public String getFormattedValue(float value) {
if (value < xVals.size()) {
if (value >= 0 && value < xVals.size()) {
return xVals.get((int) value);
} else
return "";
@ -363,7 +363,7 @@ public class CheckHomeCacheActivity extends BaseBarActivity {
IndexAxisValueFormatter formatter = new IndexAxisValueFormatter() {
@Override
public String getFormattedValue(float value) {
if (value < xVals2.size()) {
if (value >= 0 && value < xVals2.size()) {
return xVals2.get((int) value);
} else
return "";