From 3e2afc9833c2b95ab407c81d83d52fde89d92791 Mon Sep 17 00:00:00 2001 From: Diamond Lewis Date: Mon, 13 Oct 2025 13:35:00 -0500 Subject: [PATCH] fix: Invalid parameter `excludedKeys` This reverts commit 078974ed73b5e621578cc2105c206efab260ca41. fix: Invalid parameter `excludedKeys` fix build 1 --- Parse/Parse/Internal/Commands/PFRESTQueryCommand.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];