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
Problem comes at L904 of /dist/raven. Sometimes xhr requests are made without url.
url
A simple fix might be:
if (url && url.indexOf(self._globalKey) === -1) {
or
url = url || ""; if (url.indexOf(self._globalKey) === -1) {
The text was updated successfully, but these errors were encountered:
Thanks @dhritzkiv. Putting together a patch now.
Sorry, something went wrong.
Fixed in 3f21412
No branches or pull requests
Problem comes at L904 of /dist/raven. Sometimes xhr requests are made without
url
.A simple fix might be:
or
The text was updated successfully, but these errors were encountered: