fixed crash if level doesnt exist anymore in _data.json

This commit is contained in:
potzplitz 2024-04-10 21:57:26 +02:00
parent 53619560bf
commit 8931d1064d
2 changed files with 14 additions and 4 deletions

View file

@ -260,9 +260,16 @@ public class Sqlite {
String insert = "INSERT INTO " + tablename + " (placement, levelname, levelnameRaw, levelID, author, creators, verifier, verificationLink, percentToQualify, records, attempts, completed, locked, personalBest) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
try (PreparedStatement pstmt = conn.prepareStatement(insert)) {
for (int i = 0; i < levelnamelocal.size(); i++) {
pstmt.setInt(1, i + 1);
pstmt.setString(2, levelnamelocal.get(i));
pstmt.setString(3, rawLevelNameslocal.get(data.allLevels().indexOf(rawLevelNameslocal.get(i))));
if(data.allLevels().indexOf(rawLevelNameslocal.get(i)) != -1) {
pstmt.setString(3, rawLevelNameslocal.get(data.allLevels().indexOf(rawLevelNameslocal.get(i))));
}
pstmt.setInt(4, Integer.parseInt(levelIDlocal.get(i)));
pstmt.setString(5, authorlocal.get(i));
pstmt.setString(6, creatorslocal.get(i));

View file

@ -65,7 +65,7 @@ public class DifferenceCaluclator {
lvl1.add(name1);
JLabel rank1 = new JLabel();
rank1.setBounds(150, 10, 50, 30);
rank1.setBounds(130, 10, 50, 30);
rank1.setVisible(false);
lvl1.add(rank1);
@ -81,7 +81,7 @@ public class DifferenceCaluclator {
lvl2.add(name2);
JLabel rank2 = new JLabel();
rank2.setBounds(150, 10, 50, 30);
rank2.setBounds(130, 10, 50, 30);
rank2.setVisible(false);
lvl2.add(rank2);
@ -157,7 +157,6 @@ public class DifferenceCaluclator {
results.repaint();
results.revalidate();
} else if(sql.getLevelname().get(index).toLowerCase().contains(search.getText())) {
System.out.println(search.getText());
results.add(contents);
results.repaint();
results.revalidate();
@ -224,6 +223,10 @@ public class DifferenceCaluclator {
@Override
public void mouseClicked(MouseEvent e) {
search.setText("");
name1.setVisible(false);
rank1.setVisible(false);
rank2.setVisible(false);
name2.setVisible(false);
}
});