diff --git a/Parse/Parse/Internal/Commands/PFRESTQueryCommand.m b/Parse/Parse/Internal/Commands/PFRESTQueryCommand.m index 7cb65193c..254d2027e 100644 --- a/Parse/Parse/Internal/Commands/PFRESTQueryCommand.m +++ b/Parse/Parse/Internal/Commands/PFRESTQueryCommand.m @@ -144,7 +144,7 @@ + (nullable NSDictionary *)findCommandParametersWithOrder:(NSString *)order if (excludedKeys.count > 0) { NSArray *sortDescriptors = @[ [NSSortDescriptor sortDescriptorWithKey:@"self" ascending:YES selector:@selector(compare:)] ]; NSArray *keysArray = [excludedKeys sortedArrayUsingDescriptors:sortDescriptors]; - parameters[@"excludedKeys"] = [keysArray componentsJoinedByString:@","]; + parameters[@"excludeKeys"] = [keysArray componentsJoinedByString:@","]; } if (limit >= 0) { parameters[@"limit"] = [NSString stringWithFormat:@"%d", (int)limit];