We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d5c3d6 commit d947987Copy full SHA for d947987
parse/src/main/java/com/parse/ParseObject.java
@@ -967,7 +967,8 @@ private static <T extends ParseObject> Task<List<T>> fetchAllAsync(
967
}
968
969
final ParseQuery<T> query = ParseQuery.<T>getQuery(className)
970
- .whereContainedIn(KEY_OBJECT_ID, objectIds);
+ .whereContainedIn(KEY_OBJECT_ID, objectIds)
971
+ .setLimit(objectIds.size());
972
return toAwait.continueWithTask(new Continuation<Void, Task<List<T>>>() {
973
@Override
974
public Task<List<T>> then(Task<Void> task) {
0 commit comments