-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Fix/context validation #9
Conversation
src/core/razorpay-base.ts
Outdated
@@ -161,6 +161,12 @@ abstract class RazorpayBase extends AbstractPaymentProcessor { | |||
...intentRequestData, | |||
}; | |||
|
|||
if(!(customer && customer?.billing_address?.phone && customer?.phone )) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if(!(customer && customer?.billing_address?.phone && customer?.phone )) | |
if(!(customer?.billing_address?.phone || customer?.phone )) |
We are failing with new version, I think this should fix it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hey thanks for fixing this. have you tested your fix ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks fixed it
No description provided.