mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
Fix
This commit is contained in:
parent
2bc3f43292
commit
1ca585f5b4
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue