mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-05 10:20:23 +01:00
Fixes #373
This commit is contained in:
parent
9aa5a01fe5
commit
feff7de746
@ -158,7 +158,14 @@ public class BungeeInformationManager extends InformationManager {
|
||||
*/
|
||||
private ServerInfo getInspectRequestProcessorServer(UUID uuid) {
|
||||
if (bukkitServers.isEmpty()) {
|
||||
throw new IllegalStateException("No Bukkit Servers.");
|
||||
try {
|
||||
refreshBukkitServerMap();
|
||||
} catch (SQLException e) {
|
||||
Log.toLog(this.getClass().getName(), e);
|
||||
}
|
||||
if (bukkitServers.isEmpty()) {
|
||||
throw new IllegalStateException("No Bukkit Servers.");
|
||||
}
|
||||
}
|
||||
|
||||
Collection<ServerInfo> onlineServers = serverInfoManager.getOnlineBukkitServers();
|
||||
|
Loading…
Reference in New Issue
Block a user