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:
Pfeil, Scott Robert 2023-08-21 12:59:33 +00:00
commit 2a8bf6d695

View File

@ -29,6 +29,7 @@
// Default load style.
self.loadStyle = MFLoadStyleDefault;
self.replaceViewIfOnStackElseLoadWithStyle = YES;
self.identifier = [[NSUUID UUID] UUIDString];
}
return self;
}
@ -179,6 +180,7 @@
- (id)copyWithZone:(nullable NSZone *)zone {
MVMCoreRequestParameters *copyObject = [[MVMCoreRequestParameters alloc] init];
copyObject.identifier = [self.identifier copy];
copyObject.pageType = [self.pageType copy];
copyObject.parentPageType = self.parentPageType;
copyObject.optionalModules = [self.optionalModules copy];