initialize request params id without an action. copy the id for the e2eRequestId carry over

This commit is contained in:
Hedden, Kyle Matthew 2023-08-18 20:27:22 -04:00
parent 30a8f48f4d
commit 8b912d5d87

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];