mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-27 04:35:12 +01:00
Push !
This commit is contained in:
parent
fba07fa7e5
commit
1a499150c8
@ -948,6 +948,7 @@ public class MySQLThread extends Thread implements DataSource {
|
||||
public void setUnlogged(String user) {
|
||||
Connection con = null;
|
||||
PreparedStatement pst = null;
|
||||
if (user != null)
|
||||
try {
|
||||
con = makeSureConnectionIsReady();
|
||||
pst = con.prepareStatement("UPDATE " + tableName + " SET " + columnLogged + "=? WHERE " + columnName + "=?;");
|
||||
@ -960,7 +961,8 @@ public class MySQLThread extends Thread implements DataSource {
|
||||
} catch (TimeoutException ex) {
|
||||
ConsoleLogger.showError(ex.getMessage());
|
||||
return;
|
||||
} finally {
|
||||
}
|
||||
finally {
|
||||
close(pst);
|
||||
close(con);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user