diff --git a/src/java/com/threerings/presents/client/BlockingCommunicator.java b/src/java/com/threerings/presents/client/BlockingCommunicator.java index 39a948ea7..10654f661 100644 --- a/src/java/com/threerings/presents/client/BlockingCommunicator.java +++ b/src/java/com/threerings/presents/client/BlockingCommunicator.java @@ -709,10 +709,8 @@ public class BlockingCommunicator extends Communicator sendMessage(msg); } catch (IOException ioe) { - // let the communicator know if we have any problems - connectionFailed(ioe); - // and bail - shutdown(); + connectionFailed(ioe); // let the communicator know + super.shutdown(); // and bail immediately (which is why we call super) } }