Merge branch 'bugfix/request_id_carryover' into 'develop'
initialize request params id without an action. copy the id for the e2eRequestId carry over ### Summary Fix for the initial authentication page processing. Co-authored-by: Hedden, Kyle Matthew <kyle.hedden@verizonwireless.com> See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core/-/merge_requests/276
This commit is contained in:
commit
2a8bf6d695
@ -29,6 +29,7 @@
|
|||||||
// Default load style.
|
// Default load style.
|
||||||
self.loadStyle = MFLoadStyleDefault;
|
self.loadStyle = MFLoadStyleDefault;
|
||||||
self.replaceViewIfOnStackElseLoadWithStyle = YES;
|
self.replaceViewIfOnStackElseLoadWithStyle = YES;
|
||||||
|
self.identifier = [[NSUUID UUID] UUIDString];
|
||||||
}
|
}
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
@ -179,6 +180,7 @@
|
|||||||
- (id)copyWithZone:(nullable NSZone *)zone {
|
- (id)copyWithZone:(nullable NSZone *)zone {
|
||||||
|
|
||||||
MVMCoreRequestParameters *copyObject = [[MVMCoreRequestParameters alloc] init];
|
MVMCoreRequestParameters *copyObject = [[MVMCoreRequestParameters alloc] init];
|
||||||
|
copyObject.identifier = [self.identifier copy];
|
||||||
copyObject.pageType = [self.pageType copy];
|
copyObject.pageType = [self.pageType copy];
|
||||||
copyObject.parentPageType = self.parentPageType;
|
copyObject.parentPageType = self.parentPageType;
|
||||||
copyObject.optionalModules = [self.optionalModules copy];
|
copyObject.optionalModules = [self.optionalModules copy];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user