[Broken Windows Theory] avoid calling getConnectivity() a second time, since the object is still fresh in the else branch of the check for WiFi.
@@ -81,7 +81,7 @@ class ConnectivityServiceImpl implements ConnectivityService {
return result;
} else {
- return !getConnectivity().isConnected();
+ return !c.isConnected();
}