Skip to content

Commit 9e8a425

Browse files
Fix Identity Casting Issue
1 parent 110a059 commit 9e8a425

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

.DS_Store

6 KB
Binary file not shown.

ios/.DS_Store

6 KB
Binary file not shown.

ios/RNMParticle/RNMParticle.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ + (MPIdentityApiRequest *)MPIdentityApiRequest:(id)json {
533533
request.customerId = json[@"customerId"];
534534
} else {
535535
NSString *value = json[key];
536-
MPUserIdentity identityType = (MPUserIdentity)key.intValue;
536+
MPIdentity identityType = (MPIdentity)key.intValue;
537537
[request setIdentity:value identityType:identityType];
538538
}
539539
}

0 commit comments

Comments
 (0)