Skip to content

Commit

Permalink
update name to requestorAppURL
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxdesmarais committed Dec 5, 2024
1 parent f5866f2 commit 24dca35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/BraintreeThreeDSecure/BTThreeDSecureRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ import BraintreeCore

/// Optional. Three DS Requester APP URL Merchant app declaring their URL within the CReq message
/// so that the Authentication app can call the Merchant app after OOB authentication has occurred.
public var threeDSRequestorAppURL: String?
public var requestorAppURL: String?

/// A delegate for receiving information about the ThreeDSecure payment flow.
public weak var threeDSecureRequestDelegate: BTThreeDSecureRequestDelegate?
Expand Down
4 changes: 2 additions & 2 deletions Sources/BraintreeThreeDSecure/BTThreeDSecureV2Provider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ class BTThreeDSecureV2Provider {
cardinalConfiguration.renderType = renderTypes.compactMap { $0.cardinalValue }
}

if let threeDSRequestorAppURL = request.threeDSRequestorAppURL {
cardinalConfiguration.threeDSRequestorAppURL = threeDSRequestorAppURL
if let requestorAppURL = request.requestorAppURL {
cardinalConfiguration.threeDSRequestorAppURL = requestorAppURL
}

guard let cardinalAuthenticationJWT = configuration.cardinalAuthenticationJWT else {
Expand Down

0 comments on commit 24dca35

Please sign in to comment.