This commit is contained in:
ZLOFENIX 2019-03-15 21:42:18 +04:00
parent 2bc3f43292
commit 1ca585f5b4

View file

@ -183,7 +183,7 @@ public void setIsBanned(HWID hwid, boolean isBanned) {
OshiHWID oshiHWID = (OshiHWID) hwid;
Connection c = mySQLHolder.getConnection();
try {
PreparedStatement a = c.prepareStatement(queryBan)
PreparedStatement a = c.prepareStatement(queryBan);
String[] replaceParamsUpd = {"totalMemory", String.valueOf(oshiHWID.totalMemory), "serialNumber", oshiHWID.serialNumber, "HWDiskSerial", oshiHWID.HWDiskSerial, "processorID", oshiHWID.processorID, "isBanned", isBanned ? "1" : "0"};
for (int i = 0; i < paramsBan.length; i++) {
a.setString(i + 1, CommonHelper.replace(paramsBan[i], replaceParamsUpd));