You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the update 8.18.0 changed something regarding to MPIdentityApiRequest.identities.
Right now the property MPIdentityApiRequest.email is defined as nullable, but if the identities property is accessed while the email is set to null, the app results in a crash with the following message: "Could not cast value of type 'NSNull' to 'NSString'."
Steps to reproduce
let identityRequest = MPIdentityApiRequest.withEmptyUser()
identityRequest.email = nil
print(identityRequest.identities)
The text was updated successfully, but these errors were encountered:
Explanation
It seems that the update 8.18.0 changed something regarding to
MPIdentityApiRequest.identities
.Right now the property
MPIdentityApiRequest.email
is defined as nullable, but if theidentities
property is accessed while the email is set to null, the app results in a crash with the following message: "Could not cast value of type 'NSNull' to 'NSString'."Steps to reproduce
The text was updated successfully, but these errors were encountered: