We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GlobalPayments.Api.Gateways.ProcessAuthorization(AuthorizationBuilder builder) assumes card holder name is two words.
We've seen Apple Pay and Google Pay names come back as single name ie "James" w/o a last name which causes an Index of of range error here:
dotnet-sdk/src/GlobalPayments.Api/Gateways/PorticoConnector.cs
Line 92 in 8e5e182
if (!string.IsNullOrEmpty(check.CheckHolderName)) { var names = check.CheckHolderName.Split(new char[] {' '}, 2); et.SubElement(holder, "FirstName", names[0]); et.SubElement(holder, "LastName", names[1]); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
GlobalPayments.Api.Gateways.ProcessAuthorization(AuthorizationBuilder builder) assumes card holder name is two words.
We've seen Apple Pay and Google Pay names come back as single name ie "James" w/o a last name which causes an Index of of range error here:
dotnet-sdk/src/GlobalPayments.Api/Gateways/PorticoConnector.cs
Line 92 in 8e5e182
The text was updated successfully, but these errors were encountered: