fix ConfigAccounts del user with uppercase letter in name

(usernames are case sensitive, userdb.delete used toLower)
pull/1/head
reger 11 years ago
parent 191ec8c82a
commit ea2e627662

@ -90,7 +90,7 @@ public final class UserDB {
public void removeEntry(final String hostName) {
try {
userTable.delete(UTF8.getBytes(hostName.toLowerCase()));
userTable.delete(UTF8.getBytes(hostName));
} catch (final IOException e) {
ConcurrentLog.logException(e);
}

Loading…
Cancel
Save