@sentiance-react-native/core 6.0.0-beta.21 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/RNSentianceCore.m +1 -1
- package/package.json +1 -1
package/ios/RNSentianceCore.m
CHANGED
|
@@ -836,7 +836,7 @@ RCT_EXPORT_METHOD(createUnlinkedUser:(NSString *)appId secret:(NSString *)secret
|
|
|
836
836
|
{
|
|
837
837
|
REJECT_IF_SDK_NOT_INITIALIZED(reject);
|
|
838
838
|
|
|
839
|
-
SENTUserCreationOptions *options = [[SENTUserCreationOptions alloc] initWithAppId:appId secret:secret linker:
|
|
839
|
+
SENTUserCreationOptions *options = [[SENTUserCreationOptions alloc] initWithAppId:appId secret:secret linker: nil];
|
|
840
840
|
options.platformUrl = platformUrl;
|
|
841
841
|
[[Sentiance sharedInstance] createUserWithOptions:options completionHandler:^(SENTUserCreationResult * _Nullable result, SENTUserCreationError * _Nullable error) {
|
|
842
842
|
if (error != nil) {
|