Skip to content

Commit 3e2afc9

Browse files
committed
fix: Invalid parameter excludedKeys
This reverts commit 078974e. fix: Invalid parameter `excludedKeys` fix build 1
1 parent a54f842 commit 3e2afc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parse/Parse/Internal/Commands/PFRESTQueryCommand.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ + (nullable NSDictionary *)findCommandParametersWithOrder:(NSString *)order
144144
if (excludedKeys.count > 0) {
145145
NSArray *sortDescriptors = @[ [NSSortDescriptor sortDescriptorWithKey:@"self" ascending:YES selector:@selector(compare:)] ];
146146
NSArray *keysArray = [excludedKeys sortedArrayUsingDescriptors:sortDescriptors];
147-
parameters[@"excludedKeys"] = [keysArray componentsJoinedByString:@","];
147+
parameters[@"excludeKeys"] = [keysArray componentsJoinedByString:@","];
148148
}
149149
if (limit >= 0) {
150150
parameters[@"limit"] = [NSString stringWithFormat:@"%d", (int)limit];

0 commit comments

Comments
 (0)