This commit is contained in:
Suresh, Kamlesh 2021-01-21 11:13:17 -05:00
parent 93a590fedf
commit 5d92df5347

View File

@ -128,7 +128,11 @@ NSString * const KeyActionTypeOpen = @"openPage";
}];
};
// BAU dictionary comparsion breaks if client paramters sets the dictionarr. For now we will set client paramters only when its sent in the action map
/*
BAU dictionary comparsion breaks if client parameters sets the dictionary.
For now we will set client parameters only when its sent in the action map.
We can move the code to Objective-C if required.
*/
if ([actionInformation dict:KeyClientParameters]) {
[self setClientParameterWith:actionInformation completionHandler:performAction];
} else {
@ -298,7 +302,11 @@ NSString * const KeyActionTypeOpen = @"openPage";
[weakSelf prepareLinkAwayWithURL:otherURL appURL:appURL actionInformation:actionMap additionalData:additionalData delegateObject:delegateObject];
};
// BAU dictionary comparsion breaks if client paramters sets the dictionarr. For now we will set client paramters only when its sent in the action map
/*
BAU dictionary comparsion breaks if client parameters sets the dictionary.
For now we will set client parameters only when its sent in the action map.
We can move the code to Objective-C if required.
*/
if ([actionInformation dict:KeyClientParameters]) {
[self setClientParameterWith:actionInformation completionHandler:performAction];
} else {
@ -453,7 +461,11 @@ NSString * const KeyActionTypeOpen = @"openPage";
}];
};
// BAU dictionary comparsion breaks if client paramters sets the dictionarr. For now we will set client paramters only when its sent in the action map
/*
BAU dictionary comparsion breaks if client parameters sets the dictionary.
For now we will set client parameters only when its sent in the action map.
We can move the code to Objective-C if required.
*/
if ([actionInformation dict:KeyClientParameters]) {
[self setClientParameterWith:actionInformation completionHandler:performAction];
} else {
@ -577,7 +589,11 @@ NSString * const KeyActionTypeOpen = @"openPage";
[weakSelf prepareLinkAwayWithURL:otherURL appURL:appURL actionInformation:actionMap additionalData:additionalData delegate:delegate];
};
// BAU dictionary comparsion breaks if client paramters sets the dictionarr. For now we will set client paramters only when its sent in the action map
/*
BAU dictionary comparsion breaks if client parameters sets the dictionary.
For now we will set client parameters only when its sent in the action map.
We can move the code to Objective-C if required.
*/
if ([actionInformation dict:KeyClientParameters]) {
[self setClientParameterWith:actionInformation completionHandler:performAction];
} else {