Fix entire merge request

This commit is contained in:
Mike 2020-06-07 02:08:59 +02:00
parent b958c4dbfe
commit 4c92dbf277
2 changed files with 10 additions and 7 deletions

View File

@ -43,5 +43,13 @@ public class InsertModToolIssue implements Runnable {
} catch (SQLException e) { } catch (SQLException e) {
LOGGER.error("Caught SQL exception", e); LOGGER.error("Caught SQL exception", e);
} }
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection();
PreparedStatement statement = connection.prepareStatement("UPDATE users_settings SET cfh_send = cfh_send + 1 WHERE user_id = ?")) {
statement.setInt(1, this.issue.senderId);
statement.execute();
} catch (SQLException e) {
LOGGER.error("Caught SQL exception", e);
}
} }
} }

View File

@ -20,7 +20,8 @@ public class UpdateModToolIssue implements Runnable {
@Override @Override
public void run() { public void run() {
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("UPDATE support_tickets SET state = ?, type = ?, mod_id = ?, category = ? WHERE id = ?")) { try (Connection connection = Emulator.getDatabase().getDataSource().getConnection();
PreparedStatement statement = connection.prepareStatement("UPDATE support_tickets SET state = ?, type = ?, mod_id = ?, category = ? WHERE id = ?")) {
statement.setInt(1, this.issue.state.getState()); statement.setInt(1, this.issue.state.getState());
statement.setInt(2, this.issue.type.getType()); statement.setInt(2, this.issue.type.getType());
statement.setInt(3, this.issue.modId); statement.setInt(3, this.issue.modId);
@ -30,11 +31,5 @@ public class UpdateModToolIssue implements Runnable {
} catch (SQLException e) { } catch (SQLException e) {
LOGGER.error("Caught SQL exception", e); LOGGER.error("Caught SQL exception", e);
} }
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("UPDATE users_settings SET cfh_send = cfh_send + 1 WHERE user_id = ?")) {
statement.setInt(2, this.issue.senderId);
statement.execute();
} catch (SQLException e) {
LOGGER.error("Caught SQL exception", e);
}
} }
} }