Change the requestUrl param key
This commit is contained in:
parent
0340f9dda6
commit
45b89ca7d3
@ -26,7 +26,7 @@ open class ActionRestartHandler: MVMCoreActionHandlerProtocol {
|
|||||||
continuation.resume(throwing: MVMCoreError.errorObject(error))
|
continuation.resume(throwing: MVMCoreError.errorObject(error))
|
||||||
} else {
|
} else {
|
||||||
// Restarts the app (forcing any passed in page types).
|
// Restarts the app (forcing any passed in page types).
|
||||||
MVMCoreSessionObject.sharedGlobal()?.restartSession(withPageType: model.pageType, requestUrl: model.requestUrl, parameters: model.extraParameters?.toJSON(), clearAllVariables: true)
|
MVMCoreSessionObject.sharedGlobal()?.restartSession(withPageType: model.pageType, requestUrl: model.requestURL, parameters: model.extraParameters?.toJSON(), clearAllVariables: true)
|
||||||
continuation.resume()
|
continuation.resume()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@ -14,7 +14,7 @@ public struct ActionRestartModel: ActionModelProtocol {
|
|||||||
|
|
||||||
public static var identifier: String = "restart"
|
public static var identifier: String = "restart"
|
||||||
public var actionType: String = ActionRestartModel.identifier
|
public var actionType: String = ActionRestartModel.identifier
|
||||||
public var requestUrl: String?
|
public var requestURL: String?
|
||||||
public var extraParameters: JSONValueDictionary?
|
public var extraParameters: JSONValueDictionary?
|
||||||
public var analyticsData: JSONValueDictionary?
|
public var analyticsData: JSONValueDictionary?
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ public struct ActionRestartModel: ActionModelProtocol {
|
|||||||
|
|
||||||
public init(_ pageType: String? = nil, _ requestUrl: String? = nil, _ extraParameters: JSONValueDictionary? = nil, _ analyticsData: JSONValueDictionary? = nil) {
|
public init(_ pageType: String? = nil, _ requestUrl: String? = nil, _ extraParameters: JSONValueDictionary? = nil, _ analyticsData: JSONValueDictionary? = nil) {
|
||||||
self.pageType = pageType
|
self.pageType = pageType
|
||||||
self.requestUrl = requestUrl
|
self.requestURL = requestUrl
|
||||||
self.extraParameters = extraParameters
|
self.extraParameters = extraParameters
|
||||||
self.analyticsData = analyticsData
|
self.analyticsData = analyticsData
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user