I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 986de4c1 authored by zzz's avatar zzz
Browse files

Streaming: Fix connection error message

parent 01da3236
No related branches found
No related tags found
No related merge requests found
...@@ -295,7 +295,7 @@ class PacketQueue implements SendMessageStatusListener { ...@@ -295,7 +295,7 @@ class PacketQueue implements SendMessageStatusListener {
IOException ioe = new I2PSocketException(status); IOException ioe = new I2PSocketException(status);
con.getOutputStream().streamErrorOccurred(ioe); con.getOutputStream().streamErrorOccurred(ioe);
con.getInputStream().streamErrorOccurred(ioe); con.getInputStream().streamErrorOccurred(ioe);
con.setConnectionError("failure code " + status); con.setConnectionError(ioe.getLocalizedMessage());
con.disconnect(false); con.disconnect(false);
} }
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment