cashfree-pg 5.0.7 → 5.0.8-node

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -109,7 +109,7 @@ Validate Webhook
109
109
  ```javascript
110
110
  app.post('/webhook', function (req, res) {
111
111
  try {
112
- Cashfree.PGVerifyWebhookSignature(req.headers["x-webhook-signature"], req.rawBody, req.headers["x-webhook-timestamp"]))
112
+ Cashfree.PGVerifyWebhookSignature(req.headers["x-webhook-signature"], req.rawBody, req.headers["x-webhook-timestamp"]);
113
113
  } catch (err) {
114
114
  console.log(err.message)
115
115
  }