Skip to content

Commit

Permalink
spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonStalnaker committed Sep 9, 2024
1 parent 195a318 commit 00c7962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/mParticle-Appboy/MPKitAppboy.m
Original file line number Diff line number Diff line change
Expand Up @@ -1061,13 +1061,13 @@ - (void)updateConsent {

// Update from mParticle consent
if (self.configuration && self.configuration[MPConsentMappingSDKKey]) {
// Retrieve the array of Consent Map Dicitonaries from the Config
// Retrieve the array of Consent Map Dictionaries from the Config
NSData *objectData = [self.configuration[MPConsentMappingSDKKey] dataUsingEncoding:NSUTF8StringEncoding];
NSArray *consentMappingArray = [NSJSONSerialization JSONObjectWithData:objectData
options:NSJSONReadingMutableContainers
error:nil];

// For each valid Consent Map check if mParticle has a corresponding consent setting and, if so, send to Braze
// For each valid Consent Map check if mParticle has a corresponding consent setting and send to Braze
for (NSDictionary *consentMappingDict in consentMappingArray) {
NSString *consentPurpose = consentMappingDict[MPMapKey];
if (consentMappingDict[MPValueKey] && userConsentMap[consentPurpose.lowercaseString]) {
Expand Down

0 comments on commit 00c7962

Please sign in to comment.