Merge branch 'cfh-info' into 'dev'

Added CFH counter

See merge request morningstar/Arcturus-Community!198
This commit is contained in:
Mike 2020-06-06 20:09:55 -04:00
commit 906f1318aa
2 changed files with 10 additions and 1 deletions

View File

@ -43,5 +43,13 @@ public class InsertModToolIssue implements Runnable {
} catch (SQLException 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
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(2, this.issue.type.getType());
statement.setInt(3, this.issue.modId);