This commit is contained in:
Joe Bowser 2010-05-10 16:10:04 -07:00
commit 9c1a1207bb

View File

@ -78,7 +78,7 @@ public class GeoListener {
loc = mGps.getLocation();
if (loc == null && mNetwork != null)
loc = mNetwork.getLocation();
else
if(loc == null)
loc = new Location(LocationManager.NETWORK_PROVIDER);
return loc;
}