mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-04-05 06:30:01 +03:00
Fix a crash when displaying Home cache charts
This commit is contained in:
parent
524fb7dd2a
commit
a9c50ab41f
1 changed files with 2 additions and 2 deletions
|
@ -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 "";
|
||||
|
|
Loading…
Reference in a new issue