We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 908263c commit 44d0ed9Copy full SHA for 44d0ed9
src/net/rcode/wsclient/WebSocket.java
@@ -310,15 +310,15 @@ public void abort() {
310
311
if (localReaderThread!=null) {
312
try {
313
- readerThread.join();
+ localReaderThread.join();
314
} catch (InterruptedException e) {
315
Thread.currentThread().interrupt();
316
}
317
318
319
if (localWriterThread!=null) {
320
321
- writerThread.join();
+ localWriterThread.join();
322
323
324
0 commit comments