mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Fix cache invalidation when resetting user
This commit is contained in:
parent
e0a578d06c
commit
d41af02ade
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ public class UserMap extends CacheLoader<String, User> implements IConf {
|
|||
UUID uuid = names.get(name);
|
||||
if (uuid != null) {
|
||||
keys.remove(uuid);
|
||||
users.invalidate(uuid);
|
||||
users.invalidate(uuid.toString());
|
||||
}
|
||||
names.remove(name);
|
||||
names.remove(StringUtil.safeString(name));
|
||||
|
|
Loading…
Reference in a new issue