diff --git a/Plan/src/main/java/com/djrapitops/plan/system/info/connection/ConnectionSystem.java b/Plan/src/main/java/com/djrapitops/plan/system/info/connection/ConnectionSystem.java index 797d3b027..bde165d98 100644 --- a/Plan/src/main/java/com/djrapitops/plan/system/info/connection/ConnectionSystem.java +++ b/Plan/src/main/java/com/djrapitops/plan/system/info/connection/ConnectionSystem.java @@ -64,15 +64,8 @@ public abstract class ConnectionSystem implements SubSystem { protected abstract Server selectServerForRequest(InfoRequest infoRequest) throws NoServersException; public void sendInfoRequest(InfoRequest infoRequest) throws WebException { - try { - Server server = selectServerForRequest(infoRequest); - - new ConnectionOut(server, ServerInfo.getServerUUID(), infoRequest).sendRequest(); - } catch (NoServersException e) { - // At this point ConnectionSystem will return false on isServerAvailable - // -> InfoSystem will try to run request locally. - InfoSystem.getInstance().sendRequest(infoRequest); - } + Server server = selectServerForRequest(infoRequest); + new ConnectionOut(server, ServerInfo.getServerUUID(), infoRequest).sendRequest(); } public ConnectionLog getConnectionLog() {