Skip to content

Commit

Permalink
added port 8080 in callbackURL
Browse files Browse the repository at this point in the history
added port 8080 in callbackURL if mulla will be running on port 8080
  • Loading branch information
urandu authored Aug 23, 2016
1 parent a65a721 commit 8b12fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/controllers/PaymentRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class PaymentRequest {
extraPayload: req.body.extraPayload,
timeStamp: req.timeStamp,
encryptedPassword: req.encryptedPassword,
callbackURL: `${req.protocol}://${req.hostname}/api/v${process.env.API_VERSION}/payment/success`,
callbackURL: `${req.protocol}://${req.hostname}:8080/api/v${process.env.API_VERSION}/payment/success`,
};

const payment = this.buildSoapBody(paymentDetails);
Expand Down

0 comments on commit 8b12fa4

Please sign in to comment.