mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-23 04:28:01 +00:00
Remove cache, actually fix NameFetcher
This commit is contained in:
parent
e13a8de1d7
commit
5010670d95
@ -17,10 +17,7 @@ import java.net.URLConnection;
|
||||
import java.util.*;
|
||||
|
||||
public class NameFetcher {
|
||||
private static Map<UUID, List<String>> cache = new HashMap<>();
|
||||
|
||||
public static List<String> nameHistoryFromUuid(UUID uuid) {
|
||||
if (cache.containsKey(uuid)) return cache.get(uuid);
|
||||
URLConnection connection;
|
||||
try {
|
||||
connection = new URL("https://api.mojang.com/user/profiles/"
|
||||
@ -30,7 +27,6 @@ public class NameFetcher {
|
||||
Type listType = new TypeToken<List<String>>() {
|
||||
}.getType();
|
||||
List<String> list = new Gson().fromJson(text, listType);
|
||||
cache.put(uuid, list);
|
||||
return list;
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
|
@ -162,7 +162,7 @@ public final class UUIDTranslator {
|
||||
// That didn't work. Let's ask Mojang. This call may fail, because Mojang is insane.
|
||||
String name;
|
||||
try {
|
||||
name = new NameFetcher(Collections.singletonList(player)).call().get(player);
|
||||
name = NameFetcher.nameHistoryFromUuid(player).get(0);
|
||||
} catch (Exception e) {
|
||||
plugin.getLogger().log(Level.SEVERE, "Unable to fetch name from Mojang for " + player, e);
|
||||
return null;
|
||||
|
Loading…
Reference in New Issue
Block a user