Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #55 from BubblegumAnarchy/master
Browse files Browse the repository at this point in the history
Fix for undefined variable 'stripeData' on authorize
  • Loading branch information
pmclain authored Jul 11, 2018
2 parents ff9ff23 + a266572 commit 19c6c84
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ define(
ownerData.owner.address.state = billingAddress.regionCode;
}

if (stripeData.address_state == null){
stripeData.address_state = '';
if (ownerData.owner.address.state == null){
ownerData.owner.address.state = '';
}

return ownerData;
Expand Down

0 comments on commit 19c6c84

Please sign in to comment.