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

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

merge of '4eee3780cfb882747ad68e39ac08b721f91c48a7'

     and 'cca89ae05036ab7a2fe0080fdd1cfac19968246a'
parents 9cac5465 67af1a17
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,7 @@ import net.i2p.router.transport.ntcp.NTCPTransport; ...@@ -36,6 +36,7 @@ import net.i2p.router.transport.ntcp.NTCPTransport;
import net.i2p.router.transport.udp.UDPTransport; import net.i2p.router.transport.udp.UDPTransport;
import net.i2p.util.Addresses; import net.i2p.util.Addresses;
import net.i2p.util.Log; import net.i2p.util.Log;
import net.i2p.util.SystemVersion;
import net.i2p.util.Translate; import net.i2p.util.Translate;
public class TransportManager implements TransportEventListener { public class TransportManager implements TransportEventListener {
...@@ -569,9 +570,10 @@ public class TransportManager implements TransportEventListener { ...@@ -569,9 +570,10 @@ public class TransportManager implements TransportEventListener {
} }
buf.append("</pre>\n"); buf.append("</pre>\n");
out.write(buf.toString()); out.write(buf.toString());
if (_upnpManager != null) // newer androids crash w/ network on IO thread
if (_upnpManager != null && !SystemVersion.isAndroid())
out.write(_upnpManager.renderStatusHTML()); out.write(_upnpManager.renderStatusHTML());
buf.append("</p>\n"); out.write("</p>\n");
out.flush(); out.flush();
} }
......
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