boxshroud fixes

This commit is contained in:
2024-02-14 13:48:34 -06:00
parent a6a2629fd5
commit 3ef3a0c37c
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -354,7 +354,11 @@ public class dbItemHandler extends dbHandlerBase {
ResultSet rs = preparedStatement.executeQuery();
if (rs.next())
worked = rs.getBoolean("result");
try {
worked = rs.getBoolean("result");
} catch(Exception e){
worked = true;
}
} catch (SQLException e) {
Logger.error(e);