Avoiding unneccessary google api calls when there is no more data.

master
Tomasz Półgrabia 2016-10-04 22:33:30 +02:00
parent 8363298dc7
commit d771451aab
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ public class PlacesFragment extends Fragment {
}); });
lg.debug("Fetching nearby places {}", location); lg.debug("Fetching nearby places {}", location);
if (places == null || places.isEmpty()) { if ((places == null || places.isEmpty()) && !noMoreResults) {
fetchNearbyPlacesAndPresent(location); fetchNearbyPlacesAndPresent(location);
} }