another emergency fix

fixed when database is getting sorted all completed levels arent completed anymore
This commit is contained in:
potzplitz 2024-04-02 03:01:07 +02:00
parent 382c3ecb78
commit 8d9aacc6a5

View file

@ -271,7 +271,7 @@ public class Sqlite {
pstmt.setInt(9, Integer.parseInt(percenttoqualifylocal.get(i)));
pstmt.setString(10, recordslocal.get(i));
pstmt.setInt(11, attemptsLocal.get(i));
pstmt.setBoolean(12, false);
pstmt.setBoolean(12, Boolean.parseBoolean(completedlocal.get(i)));
pstmt.setBoolean(13, lockedLocal.get(i)); // Insert value of locked column
pstmt.setString(14, pblocal.get(i));
pstmt.executeUpdate();