From 34055e87132d3531d4b8974d051217a9e24e3d9d Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Thu, 25 Mar 2021 15:31:01 -0400 Subject: [PATCH] key update --- MVMCore/MVMCore/LoadHandling/MVMCoreRequestParameters.m | 2 +- MVMCore/MVMCore/Models/ActionType/ActionOpenPageModel.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreRequestParameters.m b/MVMCore/MVMCore/LoadHandling/MVMCoreRequestParameters.m index c4327e1..63f4f4f 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreRequestParameters.m +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreRequestParameters.m @@ -71,7 +71,7 @@ if (alternateBase) { self.alternateBaseURL = [NSURL URLWithString:alternateBase]; } - NSString *url = [actionMap string:@"URL"]; + NSString *url = [actionMap string:@"requestURL"]; if (url) { self.URL = [NSURL URLWithString:url]; } diff --git a/MVMCore/MVMCore/Models/ActionType/ActionOpenPageModel.swift b/MVMCore/MVMCore/Models/ActionType/ActionOpenPageModel.swift index 69adbdc..c811414 100644 --- a/MVMCore/MVMCore/Models/ActionType/ActionOpenPageModel.swift +++ b/MVMCore/MVMCore/Models/ActionType/ActionOpenPageModel.swift @@ -17,7 +17,7 @@ public var pageType: String public var baseURL: String? public var appContext: String? - public var URL: String? + public var requestURL: String? public var extraParameters: JSONValueDictionary? public var analyticsData: JSONValueDictionary? public var presentationStyle: String?