Avoiding unneccessary google api calls when there is no more data.
parent
8363298dc7
commit
d771451aab
|
@ -177,7 +177,7 @@ public class PlacesFragment extends Fragment {
|
|||
});
|
||||
lg.debug("Fetching nearby places {}", location);
|
||||
|
||||
if (places == null || places.isEmpty()) {
|
||||
if ((places == null || places.isEmpty()) && !noMoreResults) {
|
||||
fetchNearbyPlacesAndPresent(location);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue