mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-15 00:07:39 -04:00
Fixed getObjectByFirstName to no longer be case-sensitive - broke it by mistake :(
This fixes all chat related problems (/tells, guildchat, groupchat, chat rooms)
This commit is contained in:
@@ -647,7 +647,7 @@ public class ObjectService implements INetworkDispatch {
|
||||
customName = customName.split(" ")[0];
|
||||
|
||||
try {
|
||||
PreparedStatement ps = core.getDatabase1().preparedStatement("SELECT * FROM characters WHERE \"firstName\"=?");
|
||||
PreparedStatement ps = core.getDatabase1().preparedStatement("SELECT * FROM characters WHERE \"firstName\" ILIKE ?");
|
||||
ps.setString(1, customName);
|
||||
ResultSet resultSet = ps.executeQuery();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user