mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-26 20:33:53 +01:00
Change limit back to 100
This commit is contained in:
parent
a0ea2a09b9
commit
6b2af436d9
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ public class NearbyPlaces {
|
||||||
int counter = 0;
|
int counter = 0;
|
||||||
|
|
||||||
//while ((line = in.readLine()) != null) {
|
//while ((line = in.readLine()) != null) {
|
||||||
while (in.readLine() != null && counter < 500) {
|
while (in.readLine() != null && counter < 100) {
|
||||||
|
|
||||||
line = in.readLine();
|
line = in.readLine();
|
||||||
counter++;
|
counter++;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue