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

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

Transport: Don't set status to disconnected if IPv6-only but not configured IPv6-only

parent 2200cf66
No related branches found
No related tags found
No related merge requests found
...@@ -635,7 +635,7 @@ public class CommSystemFacadeImpl extends CommSystemFacade { ...@@ -635,7 +635,7 @@ public class CommSystemFacadeImpl extends CommSystemFacade {
} }
public void timeReached() { public void timeReached() {
boolean good = Addresses.isConnected(); boolean good = Addresses.isConnected() || Addresses.isConnectedIPv6();
if (_netMonitorStatus != good) { if (_netMonitorStatus != good) {
if (good) if (good)
_log.logAlways(Log.INFO, "Network reconnected"); _log.logAlways(Log.INFO, "Network reconnected");
......
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