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
Calling get_embedjs_url returns //gp-gw/js/embed.js which is a non-sense.
get_embedjs_url
//gp-gw/js/embed.js
Looking to the code of the method:
@property def get_embedjs_url(self) -> str: return self.gopay.base_url[-4] + "/gp-gw/js/embed.js"
It probably should be changed to:
@property def get_embedjs_url(self) -> str: return self.gopay.base_url[:-4] + "/gp-gw/js/embed.js"
The text was updated successfully, but these errors were encountered:
Fixed by #17
Sorry, something went wrong.
No branches or pull requests
Calling
get_embedjs_url
returns//gp-gw/js/embed.js
which is a non-sense.Looking to the code of the method:
It probably should be changed to:
The text was updated successfully, but these errors were encountered: