mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-12-12 08:41:00 -05:00
Report exceptions from connection thread.
This commit is contained in:
parent
a2e4898749
commit
c68659008b
1 changed files with 1 additions and 0 deletions
|
@ -104,6 +104,7 @@ public class TcpClientSession extends TcpSession {
|
||||||
});
|
});
|
||||||
} catch(Throwable t) {
|
} catch(Throwable t) {
|
||||||
complete.set(true);
|
complete.set(true);
|
||||||
|
exceptionCaught(null, t);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).start();
|
}).start();
|
||||||
|
|
Loading…
Reference in a new issue